* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    transition: all 0.3s ease;
}


#container {
  width: 100vw;
  height: 100vh;
  
  display: flex;
  justify-content: center;
  align-items: flex-end;
}


.container > .heading {
width: 100%;
height: 10vh;

  display: flex;
  justify-content: space-around;
  align-items: center;
  position: absolute;
  top: 8%;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: small;
}

.heading > img {
  width: 39px;
  height: 37px;
}


.container > .nav-container1 {
  width: 237px;
  height: 98px;
  position: absolute;
  top: 20%;
  display: grid;
  place-items: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  z-index: 999;
}

.desktop {
  display: none;
}

.nav-container2 {
  width: 220px;
  height: 98px;
  position: absolute;
  left: 0;
  top: 15%;
  margin-left: 5px;
}

.nav {
  width: 100%;
  height: 90px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  z-index: 999;

}

.nav > div > a{
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: black;
  text-decoration: none;
}

main {
  width: 100%;
  height: 70%;
  background-color: white;
  z-index: 1;
  display: grid;
  place-items: center;
}





.pic {
  width: 159px;
  height: 210px;
  margin-top: 2.5em;
  overflow: hidden;
  z-index: 1;
}

.pic > img {
  width: 159px;
  height: 210px;
}

.info-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.hey > img {
  width: 200px;
  position: absolute;
  bottom: 10%;
  left: 50%;
  margin-left: -100px;
  rotate: -45deg;
  z-index: -1;
  opacity: .3;
}


.info {
  width: 90vw;
  font-size: small;
  padding: .5em 1em;
}



@media only screen and (min-width: 550px) and (max-width: 912px) {
  .pic{
    width: unset;
    height: unset;
  }
  .pic >img {
      width: unset;
      height: unset;
  }    
}



  @media only screen and (min-width: 913px) {
    .desktop {
      display: block;
    }
    .mobile {
        display: none;
    }

  
#container {
    width: 100vw;
    height: 100vh;
    
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.container > .heading {
  width: 68%;
  height: 22%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 8%;
    left: 5%;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: xx-large;
}

.heading > img {
    width: 100px;
    height: 105px;
}

.container > .nav-container1 {
  width: 239px;
  height: 261px;
  position: absolute;
  top: 5%;
  right: 5%;
  display: grid;
  place-items: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  z-index: 999;
}

.nav-container2 {
    width: 215px;
    height: 192px;
    position: absolute;
    inset: unset;
    margin: unset;
}

.nav {
    width: 192px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-evenly;
    z-index: 999;

}

.nav > div > a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: black;
    text-decoration: none;
}

main {
    width: 90%;
    height: 70%;
    background-color: white;
    border-radius: 100px 100px 0 0;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 2fr; /* Adjust the column widths as needed */
    grid-gap: 20px; /* Adjust the gap between grid items */
}




  
  .pic {
    width: unset;

    margin-top: unset;
    grid-column: 1;
    height: 100%;
    overflow: hidden;
    z-index: unset;
  }
  
.pic > img {
  width: unset;
  height: unset;
}

  .info-container {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
  }
  
  .hey {
    grid-row: 1;
  }
  
.hey > img {
  width: unset;
  position: relative;
  inset: unset;
  margin: unset;
  rotate: unset;
  opacity: 1;
  z-index: unset;
}

  .info {
    width: unset;
    font-size: unset;
    padding: unset;
    grid-row: 2;
    padding-right: 10px;
  }
  }
