@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=M+PLUS+Rounded+1c:300,500,700,900|Roboto:300,500,700&display=swap');
.overlay {
cursor: pointer;	
	
 color: #fff;
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
 background: rgba(0,174,255,1);
background: -moz-linear-gradient(-45deg, rgba(0,174,255,1) 0%, rgba(239,1,124,0.9) 100%);
background: -webkit-gradient(left top, right bottom, color-stop(0%, rgba(0,174,255,1)), color-stop(100%, rgba(239,1,124,0.9)));
background: -webkit-linear-gradient(-45deg, rgba(0,174,255,1) 0%, rgba(239,1,124,0.9) 100%);
background: -o-linear-gradient(-45deg, rgba(0,174,255,1) 0%, rgba(239,1,124,0.9) 100%);
background: -ms-linear-gradient(-45deg, rgba(0,174,255,1) 0%, rgba(239,1,124,0.9) 100%);
background: linear-gradient(135deg, rgba(0,174,255,1) 0%, rgba(239,1,124,0.9) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00aeff', endColorstr='#ef017c', GradientType=1 );
  overflow-x: hidden;
  transition: 0.5s;
}

.overlay-content {
  position: relative;
  top: 25%;
  width: 100%;
  text-align: left;
  margin-top: 30px;
  cursor: pointer;
}

.overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 22px;
  color: #fff;
  display: block;
  transition: 0.3s;
  margin-left: 30px;
  cursor: pointer;
}

.overlay a:hover, .overlay a:focus {
  color: #fff;
  cursor: pointer;
}

.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 50px;
  cursor: pointer;
}

@media screen and (max-height: 450px) {
  .overlay a {font-size: 20px cursor: pointer;}
  .overlay .closebtn {
	  cursor: pointer;
  font-size: 40px;
  top: 15px;
  right: 35px;
  }
}