.menu-btn{
  position: fixed;
  top: 10px;
  right: 14px;
  display: flex;
  height: 80px;
  width: 100px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: #1C2950;
}

.menu-btn span,
.menu-btn span::before,
.menu-btn span::after{
  content: "";
  display: block;
  height: 3px;
  width: 30px;
  border-radius: 5px;
  position: absolute;
  background-color: #c2996c;
}

.menu-btn span::before{
  bottom: 10px;
}

.menu-btn span::after{
  top: 10px;
}

#menu-btn-check:checked~.menu-btn span{
  background-color: #1C2950;
}

#menu-btn-check:checked~.menu-btn span::before{
  bottom: 0;
  transform: rotate(45deg);
}

#menu-btn-check:checked~.menu-btn span::after{
  top: 0;
  transform: rotate(-45deg);
}

#menu-btn-check{
  display: none;
}

.menu-content{
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 80;
  background-color: #1C2950;
  transition: all 0.5s;
}

.menu-content ul{
  padding: 70px 10px 0;
}

.menu-content ul li{
  list-style: none;
}

.menu-content ul li a{
  display: block;
  width: 100%;
  font-size: 20px;
  box-sizing: border-box;
  color: #c2996c;
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
  font-family: bara;
  font-weight: bold;
  text-align: center;
}

.menu-content ul li a::before{
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #c2996c;
  border-right: solid 2px #c2996c;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}

.menu-content ul li a:hover{
  transform: scale(1.2);
}

#menu-btn-check:checked~ .menu-content{
  left: 0;
}

body{
  background-color: #1c2950;
  
}
.class1{
  text-align: center;
}

h3{
  text-align: center;
  color: #c2996c;
  font-family: haru;
}