




/*copy pasta*/
* {
    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: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5em;
}


.email {
    margin-top: 5em;
    width: 50%;
    display: grid;
    place-items: center;
    border: 10px solid #E6C3E1;
    padding: 1em;
    border-radius: 10px;
    color: black;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
}


.social {
    
    display: flex;
    flex-direction: column ;
    justify-content: center;
    align-items: center;
    gap: 50px;
}


  @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;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2em;
}

.email {
    margin: unset;
    width: 20%;
    
}

.social {
    flex-direction: row;
    
}

  }
