* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Figtree', sans-serif;
}

/* prevents horizontal scrolling */
html, body{
  max-width: 100%;
  overflow-x: hidden;
}

/* navbar style */
.navbar {
  background: #faeee7;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar__container {
  display: flex;
  justify-content: space-between;
  height: 80px;
  z-index: 1;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 50px;
}

#navbar__logo {
  color: #33272a;
  background-size: 100%;
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 2rem;
  padding-left: 10px;
}

.logo {
  margin-right: 0.5rem;
  cursor: pointer;
  height: 100%;
}

.navbar__menu {
  display: flex;
  align-items: center;
  list-style: none;
  text-align: center;
}

.navbar__item {
  height: 80px;
}

.navbar__links {
  color: #33272a;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 1.5rem;
  height: 100%
}

.navbar__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.1rem;
  width: 100%
}

#btn {
  background: #c3f0ca;
  color: #594a4e;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 10px 20px;
  height: 100%;
  width: 100%;
  border: solid #594a4e;
  outline: none;
  border-radius: 4px;
  cursor: pointer;
}

#btn:hover {
  background: #ff8ba7;
  transition: all 0.3s ease;
}

.navbar__links:hover {
  color: #ff8ba7;
  transition: all 0.3s ease;
}

.logo:hover {
  transform: scale(1.1);
  transition: all 0.3s ease-in-out;
}

/* Mobile menu */
  @media screen and (max-width: 960px) {
    .navbar__container {
      background: #faeee7;
      display: flex;
      justify-content: space-between;
      height: 80px;
      z-index: 1;
      width: 100%;
      max-width: 1300px;
      padding: 0;
    }

    .navbar__menu {
      display: grid;
      grid-template-columns: auto;
      margin: 0;
      width: 100%;
      position: absolute;
      top: -1000px;
      opacity: 0;
      transition: all 0.5s ease;
      height: 50vh;
      z-index: -1;
    }

    .navbar__menu.active {
      background: #faeee7;
      top: 100%;
      opacity: 1;
      transition: all 0.5s ease;
      z-index: 99;
      height: 46vh;
      font-size: 1.6rem;
      border: solid #33272a;
      border-radius: 4px
    }

    #navbar__logo {
      padding-left: 25px;
    }

    .navbar__toggle .bar {
      width: 25px;
      height: 3px;
      margin: 5px auto;
      transition: all 0.3s ease-in-out;
      background: #33272a;
      display: block;
      cursor: pointer;
    }

    .navbar__item {
      width: 100%;
    }

    .navbar__links {
      text-align: center;
      padding: 2rem;
      width: 100%;
      display: table;
    }

    .navbar__btn {
      padding-bottom: 2rem;
    }

    #btn {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 80%;
      height: 80px;
      margin: 0;
    }

    #btn:hover {
      background: #ff8ba7;
      transition: all 0.3s ease;
    }
    
    .navbar__links:hover {
      color: #ff8ba7;
      transition: all 0.3s ease;
    }

    .logo:hover {
      transform: scale(1.1);
      transition: all 0.3s ease-in-out;
    }

    #mobile-menu {
      position: absolute;
      top: 20%;
      right: 5%;
      transform: translate(5%, 20%);
      overflow-x: auto;
    }

    #mobile-menu.is-active .bar:nth-child(2) {
      opacity: 0;
    }

    #mobile-menu.is-active .bar:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }

    #mobile-menu.is-active .bar:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }
  }

  /* Hero Section CSS */ 
  .main__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3%;
    align-items: center;
    justify-self: center;
    width: 100%;
    height: 90vh;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    z-index: 1;
  }

  .main__content h1 {
    font-size: 4rem;
    color: #33272a;
    background-size: 100%;
    margin-bottom: 20px;
  }

  .main__content p {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 35px;
    margin-bottom: 20px;
    color: #594a4e;
  }

  span {
    color: #ff8ba7;
  }

  a, u {
    text-decoration: none;
  }

  .images {
    position: relative;
    max-width: 100%;
    height: 90vh;
    padding: 20px 50px;
  }

  .emily {
    position: absolute;
    max-width: 100%;
    left: 3%;
    top: 8%;
    transition: 1s left;
  }

  .shape {
    position: absolute;
    width: 110%;
    top: 7%;
    left: 1%;
    transition: 1s top;
  }

  @media screen and (min-width: 961px){
    .images:hover .emily {
      left: -20px;
    }
  
    .images:hover .shape {
      top: -3%;
    }
  }

  .main__content br {
    display: block;
    content: " ";
    margin-top: 6%;
  }

  br {
    display: block;
    content: " ";
    margin-top: 15px;
  }

  span {
    color: #ff8ba7;
  }

  a, u {
    text-decoration: none;
  }
  
  /* Mobile Responsive */
  @media screen and (max-width: 768px) {

    .main__container {
      display: grid;
      grid-template-columns: auto;
      align-items: center;
      justify-self: center;
      width: 100%;
      height: 90vh;
      margin: 14% auto;
      padding: 0 50px;
      z-index: 1;
      max-width: 1100px;
    }
  
    .main__content h1 {
      text-align: center;
      font-size: 4rem;
      color: #33272a;
      background-size: 100%;
      margin-bottom: 2rem;
    }
  
    .main__content p {
      text-align: center;
      font-size: 1.5rem;
      font-weight: 400;
      line-height: 45px;
      color: #594a4e;
    }

    .images {
      position: relative;
      max-width: 100%;
      height: 90vh;
      left: 7%;
      z-index: 1;
    }
    
    .emily {
      max-width: 80%;
      text-align: center;
      top: -1%;
    }
  
    .shape {
      max-width: 90%;
      top: -4%;
      text-align: center;
    }
  }

  @media screen and (max-width: 480px) {
    .main__content h1 {
      font-size: 3rem;
      margin: 2rem 0;
    }
  
    .main__content p {
      font-size: 1rem;
      font-weight: 400;
      line-height: 45px;
      color: #594a4e;
    }
  }

  /* Information Section */
  .info__container {
    background: #faeee7;
    display: flex;
    flex-direction: column;
    height: fit-content;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 50px;
    border-radius: 25px;
  }

  .info__content h1{
    font-size: 2rem;
    color: #33272a;
    margin-bottom: 1rem;
  }

  .info__content p{
    font-size: 1rem;
    color: #594a4e;
    line-height: 25px;
  }
  
  .misc__content h1{
    font-size: 2rem;
    color: #33272a;
    margin-bottom: 1rem;
  }

  .misc__content {
    font-size: 1rem;
    color: #594a4e;
    line-height: 25px;
  }

  .space {
    background: #fff;
    width: 100%;
    margin: 0 auto;
    padding: 30px 50px;
    max-width: 1200px;
  }

  .copyright {
    display: flex;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 50px;
  }
