html {
  scroll-behavior: smooth;
}
.header-container {
  height: 16vh;
  display: flex;
  flex-direction: column;
}
.main-container {
  width: 100vw;
  height: 84vh;
  background-color: #0c2785;
  background-image: url(../../public/img/home2.jpg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

.link-email-container {
  flex: 6;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-direction: column-reverse;
}

.btn-container {
  position: absolute;
  bottom: 22vh;
  left: 32vw;
  width: 180px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 10px;
}
/* To handle ios phones with less height */
@media (max-height: 700px) {
  .btn-container {
    bottom: 130px;
  }
}
@media (min-height: 667px) {
  .btn-container {
    bottom: 190px;
  }
}

.action-button {
  font-size: small;
  color: white;
  width: 140px;
  height: 25px;
  display: flex;
  align-items: center;
  font-weight: bold;
  justify-content: center;
  cursor: pointer;
  text-align: center;
  border-radius: 15px;
}

.about-img {
  max-width: 100%;
  height: auto;
  display: block;
}

.mobile-only {
  display: block;
}

.desktop-only {
  display: none;
}

.about-container {
  padding-left: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-weight: 400;
  font-size: 11px;
  color: black;
}

.about-email {
  padding-left: 2px;
}

.about-phone {
  padding-left: 5px;
}

@media (min-width: 768px) {
  .header-container {
    height: 11vh;
    display: flex;
    flex-direction: row;
  }
  .link-email-container {
    flex: 6;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
  }

  .main-container {
    width: 100%;
    height: 89vh;
    background-color: #00268c;
    background-image: url(../../public/img/home.jpg);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: contain;
  }
  .btn-container {
    position: absolute;
    bottom: 14vh;
    left: 49vw;
    width: 500px;
    display: flex;
    justify-content: left;
    gap: 22px;
    flex-direction: row;
  }

  .action-button {
    color: white;
    width: 229px;
    height: 38px;
    display: flex;
    align-items: center;
    font-weight: bold;
    justify-content: center;
    cursor: pointer;
    text-align: center;
    border-radius: 30px;
  }

  .mobile-only {
    display: none;
  }
  .desktop-only {
    display: block;
  }

  .about-container {
    padding-left: 15px;
    margin-bottom: 100px;
    font-size: 13px;
  }
}
