html, body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #F8F8F8;
  max-width: 100vw;
}

 /* || Navbar styling */

#navbar-container {
  height: 8.33%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 2.5vw;
}

#navbar-container div {
  padding-left: 2.5vw;
  color: #121212;
  font-weight: 600;
  font-size: 25px;
}

#navbar-container div a {
  text-decoration: none;
}

a {
  text-decoration: underline solid black;
  color: inherit;
}

#about-section {
  height: 50vh;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: fit-content;
}

#about-section__text #welcome-message {
  font-weight: 600;
  font-size: 70px;
  margin-top: 0;
  color: #052049;
  border-bottom: 1px solid #121212;
  max-width: 55vw;
}

#about-section__text p {
  max-width: 55vw;
  font-size: 16px;
  margin-bottom: 10px;
  color: #121212;
  font-weight: 500;
}

#wave-container {
  margin: 0;
  background-image: url('/assets/graphics/wave_banner.svg');
  background-repeat: no-repeat;
  background-size: cover;
  height: 10vh;
}

#email-service-section {
  margin-top: -1vh;
  background-color: #052049;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  height: 65vh;
  min-height: fit-content;
}

#text-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 35vw;
}

#image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50vh;
  background-color: #d1ceca;  
  border-radius: 20px;
  padding: 1vh;
}

#image-container img {
  height: 100%;
}

.header {
  color: #FFFFFF;
  margin-bottom: 1vw;
  font-size: 40px;
  font-weight: 600;
}

.subtext {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 300;
}

#email-service-section a {
  text-decoration: underline solid #FFFFFF;
  color: inherit;
}

/* Import fonts */
@font-face {
font-family: 'Poppins';
src: url('/assets/fonts/Poppins-Light.ttf');
font-weight: 300;
font-style: normal;
}

@font-face {
font-family: 'Poppins';
src: url('/assets/fonts/Poppins-SemiBold.ttf');
font-weight: 600;
font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('/fonts/Poppins-Medium.ttf');
  font-weight: 500;
  font-style: normal;
  }