/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 10px;
  height: -webkit-fill-available;
}
body {
  font-family: "Alexandria", sans-serif;
  background-image: url(bg.png);
  background-color: #123664;
  background-position: center;
  background-size: cover;
  color: white;
  min-height: 100vh; /* Fallback */
  min-height: calc(var(--vh, 1vh) * 100);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

/* Container */
.container {
  width: 100%;
  height: 100%;
  min-height: 100vh; /* Fallback */
  min-height: calc(var(--vh, 1vh) * 100);
  min-height: -webkit-fill-available;
  max-width: 900px;
  text-align: center;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

/* Logo */
.logo-container {
  margin-top: 7rem;
}
.half-down {
    height: 54vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
.logo-img {
  max-width: 100%;
  height: auto;
  width: 36rem;
}

/* Message */
.message-title {
  font-size: 3.2rem;
  font-weight: normal;
  line-height: 4.6rem;
  margin-bottom: 8rem;
}

/* Contact Links */
.contact-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 2rem;
  margin-top: auto;
}

.contact-link {
  color: white;
  text-decoration: underline;
  opacity: 0.75;
  transition: opacity 0.3s ease;
  font-size: 1.8rem;
}

.contact-link:hover {
  opacity: 1;
}

/* Norrom Text */
.norrom-text {
  font-size: 1.4rem;
  opacity: 0.75;
  line-height: 2.4rem;
  margin-bottom: 5rem;
  text-align: center;
  font-weight: 300;
  width: 110%;
  margin-left: -5%;
}

.norrom-text a {
  color: white;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1020px) {
  /* Message */
  .message-title {
    font-size: 2.4rem;
    font-weight: normal;
    line-height: 3.2rem;
    margin-bottom: 15rem;
  }

  /* Contact Links */
  .contact-container {
    max-width: 700px;
  }
  .contact-link {
    font-size: 1.6rem;
  }
  .norrom-text {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  body {
    background-image: url(bg-mobile.jpg);
  }
  .logo-img {
    width: 100%;
  }

  .logo-container {
    margin-top: 3rem;
    margin-left: 5rem;
    margin-right: 5rem;
    height: 15rem;
  }
  
  .message-container {
    width: 100%;
  }
  .message-title {
    font-size: 1.9rem;
    margin-bottom: 0rem;
    line-height: 2.8rem;
    text-align: center;
    padding: 0 3rem;
    font-weight: 300;
  }

  .contact-container {
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 0;
    align-items: center;
    padding: 0 5rem;
    justify-content: center;
    height: 15rem;
    margin-top: inherit;
  }
  .contact-link {
    font-size: 1.6rem;
    line-height: 2.7rem;
    font-weight: 300;
  }

  .norrom-text {
    padding: 0 2.3rem;
    margin-bottom: 3rem;
    font-size: 1.4rem;
    line-height: 2rem;
    font-weight: 300;
  }
}
