* {
  font-family: Raleway, Helvetica, sans-serif;
  text-wrap: pretty;
}

.container {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px 0px 20px 0px;
}

.container img {
  padding: 15px;
}

h1 {
  font-size: 24px;
}
h2 {
  font-size: 18px;
  margin: 10px 0;
}
img {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin-top: 15px;
}
@media (min-width: 768px) {
  .container {
    flex-direction: row;
    justify-content: space-between;
  }
  h1,
  h2 {
    /* text-align: left; */
  }
  img {
    margin-top: 0;
  }
}

.white-block-left {
  position: relative; /* Needed for positioning the pseudo-element */
  padding-left: 30px;
  text-align: left;
  border-left: 12px solid white;
  margin-left: 5px;
}

.white-block-right {
  position: relative; /* Needed for positioning the pseudo-element */
  padding-right: 30px;
  text-align: right;
  border-right: 12px solid white;
  margin-right: 5px;
}

#header nav {
  display: flex;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
}

#header {
  -moz-transition:
    background-color 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out;
  -webkit-transition:
    background-color 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out;
  -ms-transition:
    background-color 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out;
  transition:
    background-color 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out;
  background-color: transparent;
}

#header.alt {
  background-color: transparent;
}

#header.scrolled {
  background-color: rgba(0, 0, 0, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 0px 8px white;
}

.email-link {
  font-size: 0.7em;
  white-space: nowrap;
}

@media screen and (max-width: 736px) {
  .email-link {
    font-size: 0.6em;
  }
}

#title {
  font-size: 3vw; /* Responsive font-size */
  letter-spacing: 0.35em;
  font-weight: 600;
  line-height: 1.35; /* Minimal line-height */
  display: inline-block; /* This allows you to use padding/margins if needed */
  margin-top: 5px;
  margin-bottom: 10px;
}

#subtitle {
  font-size: 6vw; /* Use viewport width for responsiveness */
  display: inline-block; /* This allows you to use padding/margins if needed */
  line-height: 1; /* Adjusted for better spacing */
  font-weight: bold;
}

#description {
  font-size: 7vw; /* Use viewport width for responsiveness */
  line-height: 1;
  margin: auto;
  width: 80%;
  text-align: center;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.8);
}

/* Optional: Media Queries for further adjustments on larger screens */
@media (min-width: 768px) {
  #description {
    margin-top: 15px;
  }
  #title {
    font-size: 1em; /* Use fixed size for larger screens */
  }

  #subtitle {
    font-size: 2em; /* Use fixed size for larger screens */
  }

  #description {
    font-size: 2.5em; /* Use fixed size for larger screens */
  }
}

#section-container {
  background: linear-gradient(90deg, rgba(83, 94, 148, 1) 0%, rgba(0, 0, 0, 1) 50%, rgba(192, 131, 54, 1) 100%);
}

.wrapper {
  border-top: 3px solid #ffffff00;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: black; /* or any color you prefer */
  color: white; /* text color */
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px; /* adjust as needed */
  z-index: 1000; /* ensure it is on top */
}

#banner-border {
  border-bottom: solid 2px rgba(255, 255, 255, 0.125);
  margin-bottom: 1.3em !important;
  padding-bottom: 0.9em;
}

.black-and-white {
  filter: grayscale(100%);
}
