* {
  box-sizing: border-box;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Helvetica Neue", Arial, sans-serif;
  margin: 0; /* Remove global auto margin to avoid white edges */
  padding: 0;
}

/* Ensure body and html are 100% height */
html, body {
  height: 100%;
}

.bg-image {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: auto;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh; /* Ensure the container always takes up the full viewport height */
  background-color: #00030c;
  background-image: url(./assets/background.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover; /* Ensure the image always fills the entire container */
  background-origin: border-box;
}

.header h3 {
  text-align: center;
  color: #7d3641;
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  line-height: 36px;
}

.header {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px;
}

.header > h1 {
  font-weight: 600;
  font-size: 48px;
  text-align: center;
  color: #7d3641;
}

.header > p {
  font-weight: 400;
  font-size: 24px;
  text-align: center;
  color: #7d3641;
  margin: 16px 0px;
}

.options {
  display: flex;
  flex-direction: row;
}

.options > a {
  color: #ffffff;
  text-decoration: underline;
  margin: 0px 8px;
  font-size: 24px;
}

.logo {
  margin-top: 75px;
}

.logo > img {
  width: 160px;
  height: 64px;
}

.learn-more > a > button {
  background: #7d3641;
  border-radius: 4px;
  border: none;
  width: 180px;
  margin-top: 78px;
  height: 55px;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
}

/* Media Queries for smaller screen adjustments */
@media screen and (max-width: 1024px) {
  .container {
    background-size: cover; /* Ensure the image covers the container */
    background-position-y: center;
  }
}

@media screen and (max-width: 600px) {
  .container {
    background-size: cover;
    background-position-y: center;
  }

  .header > h1 {
    font-size: 32px;
  }

  .header > p {
    font-size: 18px;
  }

  .learn-more > a > button {
    width: 150px;
    height: 45px;
    font-size: 14px;
  }
}