@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Poppins:wght@400;500;700&display=swap');


*{
  margin: 0;
  padding: 0;
  font-family:'Open Sans', sans-serif;
  box-sizing: border-box;
}


/* fully responsive nav bar */

nav{
  display: flex;
  width: 100%;
  padding: 0.8em;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

 nav .logo {
  width:  10em;
}

ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-right: 0rem;
  gap: 0.5rem;
}

ul li{
  list-style: none;
  margin-right: 1em;
}

li a{
  text-decoration: none;
  color: #5a189a;
  transition: all 0.3s ease;
  font-size: 0.9rem;  
}

 .active
{
  background-color:#5a189a;
  color: #fff;
  padding: 0.5em;
  font-size: 0.9rem;
  border-radius: 15px;
}

li a:hover{
  background-color: #f4e3fe;
  padding: 0.5em;
  font-size: 0.9rem;
  border-radius: 15px;
}

nav .menu-btn i{
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: none;
}
input[type="checkbox"]{
  display: none;
}

@media (max-width: 600px) {
  nav{
    position: fixed;
    background-color: hsl(277, 63%, 87%);
    top: 0;
    z-index: 1;
  }
  nav .menu-btn i{
    display: block;
  }
  #click:checked ~ .menu-btn i:before{
    content: "\f00d";
  }
  nav ul{
    position: fixed;
    top:3.5em;
    left: -100%;
    background: hsl(277, 64%, 87%);
    height: 45vh;
    width: 100%;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
  }
  #click:checked ~ ul{
    left: 0;
  }
  nav ul li{
    width: 100%;
    margin: 40px 0;
  }
  nav ul li a{
    width: 100%;
    margin-left: -100%;
    font-weight: 800;
    color: #ffffff;
    display: block;
    transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  #click:checked ~ ul li a{
    margin-left: 0px;
  }
  nav ul li a.active,
  nav ul li a:hover{
    background: none;
    color: #5a189a;
    padding: 0;

  }
  nav .menu-btn i{
    color: #5a189a;
    font-size: 22px;
    cursor: pointer;
    display: contents;
}
}



/* finally, end of nav bar..lol */

.coming{
  text-align: center;
}

.coming img{
  width: 40%;
}
@media (max-width:600px){
  .coming{
    margin-top: 5em;
  }
}