*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
  }
  .wrapper{
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
	z-index :999;
    width: 100%;
    background: #000;
      opacity:0.92;
    clip-path: circle(25px at calc(100% - 45px) 45px);
    transition: all 0.5s ease-in-out;
  }
  #active:checked ~ .wrapper{
    clip-path: circle(80%);
  }
  .btn-area{
    position: absolute;
    z-index: 9999;
    right: 20px;
    top: 20px;
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    background: #0088ff;
    transition: all 0.5s ease-in-out;
  }
  #active:checked ~ .btn-area{
    background: #fff;
    color: #262626;
  }
  #active:checked ~ .btn-area i:before{
    content: "\f00d";
  }
  .wrapper ul{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    list-style: none;
    text-align: center;
  }
  .wrapper ul li{
    margin: 15px 0;
  }
  .wrapper ul li a{
    position: relative;
    line-height: 50px;
    transition: all 0.3s ease;
    color: none;
      font-family: Formulacondensed, sans-serif;
    text-decoration: none;
    font-size: 30px;
    font-weight: 500;
    padding: 5px 30px;
    color: #fff;    
  }
  .wrapper ul li a:hover{
    letter-spacing: 2px;
  }
  input[type="checkbox"]{
    display: none;
  }
  .content{
    position: absolute;
    text-align: center;
    width: 100%;
    color: #202020;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;    
  }
  .content .text-content {
	font-size: 85px;
	line-height: 1;
}
.content .text-content span {
	display: block;
	color: deepskyblue;
}