@charset "UFT-8";
html{
    font-size: 100%;
}
body{
    background-color: rgba(219, 73, 73, 0.87);
    height: 100vh;
    color: rgb(251, 212, 244);
    margin: 0;
    width: auto;
    max-width: 100%;
    min-width: 320px;
    font-family: sans-serif;
    font-style: normal;
    font-weight: bold;
}
p{
    text-align: left;
    font-family: sans-serif;
    font-style: normal;
    font-weight: bold;
    color: rgb(255, 234, 251);
}
a{
  color: rgb(255, 234, 251);
}
a:visited{
  color: rgb(255, 234, 251);
}
#hamburger{
    opacity: 0;
    position: fixed;
}
label .burger{
    position: fixed;
    top: 0.6rem;
    left: 0.6rem;
    z-index: 3;
    width: 2rem;
    height: 2rem;
    margin: 5px;
}
label .burger::before,
label .burger::after,
label .burger .bar{
    position: absolute;
    left: 0;
    width: 100%;
    height: 0.25rem;
    border-radius: 5px;
    background: rgb(77, 34, 7);
    content: "";
    transition: all 0.5s;
}
label .burger::before{
    top: 0;
    transform-origin: top left;
}
label .burger .bar{
    top: 45%;
}
label .burger::after{
    bottom: 0;
    transform-origin:bottom left;
}
#menu{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: flex-start;
}
#menu::before{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 15rem;
    background: rgb(255, 246, 166);
    content: "";
    transform: translate(-100%);
    transform-origin: bottom left;
    transition: transform 0.3s;
}
#menu a{
    margin: 0.8rem 0;
    padding: 0.2rem 3rem;
    font-size: 2.0rem;
    line-height: 1.0;
    font-family: "Modak", serif;
    font-weight: 400;
    font-style: normal;
    color: rgb(77, 34, 7);
    text-decoration: none;
    transform: translateX(-100%);
    transition: all 0.3s ;
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
#menu a:hover{
    scale: 1.1;
    color: cornsilk;
}
  
#hamburger:checked + label .burger::before,
#hamburger:checked + label .burger::after{
    width: 130%;
}
#hamburger:checked + label .burger::before{
    transform: rotate(45deg);
}
#hamburger:checked + label .burger::after{
   transform: rotate(-45deg);
}
#hamburger:checked + label .burger .bar{
    transform: scale(0);
}
#hamburger:checked ~ #menu::before{
    transform: translateX(0);
}
#hamburger:checked ~ #menu a{
    transform: translateX(0);
}

.sec-title{
    font-size: 6rem;
    text-align: center;
    font-family: "Modak", serif;
    font-weight: 400;
    font-style: normal;
    width: auto;
    margin-bottom: 0;
    color: rgb(251, 212, 244);
}
.sub-title{
    text-align: center;
}
.next-flyer{
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 20px;
}
.flyer{
    width: 40%;
}
@media screen and (max-width: 530px){
    .next-flyer{
      flex-direction: column;
      align-items: center;
      gap: 40px;
      margin: 40px;
    }
    .flyer{
      width: 95%; 
    }
}
.title{
    margin: 40px 20px;
    line-height: 1.2;
    font-family: sans-serif;
    font-style: normal;
    font-weight: bold;
    text-align: center;
}
.abc{
    margin: 20px;
}
@media screen and (max-width: 530px){
    .title{
      margin: 40px 20px;
      line-height: 1.2;
      font-family: sans-serif;
      font-weight: bold;
    }
    .abc{
      margin: 20px;
    }
}
.next-text{
    margin: 5%;
}
.next-details{
    margin: 40px;
}
.details-section{
    background-color: rgb(217, 241, 244);
    box-shadow: 0 5px 0 #9abec5;
    color: rgb(77, 34, 7);
    border-radius: 5rem;
    display: inline-block;
    padding: 5px;
    font-size: 1.3rem;
}
@media screen and (max-width: 530px){
    .details-section{
      background-color: rgb(217, 241, 244);
      box-shadow: 0 5px 0 #9abec5;
      color: rgb(77, 34, 7);
      border-radius: 5rem;
      display: inline-block;
      padding: 5px;
      font-size: 0.9rem;
    }
}

.logo{
  text-align: center;
  margin: 0;
}
.logo-img{
  width: 70px;
  margin: 10px;
}
.copyright{
    text-align: center;
}