:root {
  --color-ink: #18233B;
  --color-white: #FFFFFF;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Avenir", "Gill Sans", "Trebuchet MS", sans-serif;
  color: var(--color-ink);
  background: var(--color-white);
}

.hero {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("img/hero_bg.svg") center/cover no-repeat;
  position: relative;
}

.container {
  width: min(100% - 32px, 1120px);
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.logo {
  width: 75%;
  max-width: 900px;
  height: auto;
  filter: brightness(0) invert(1);
}

.subtext {
  max-width: 100%;
  margin: 0;
  font-family: "Inter", "Avenir Next", "Avenir", "Gill Sans", "Trebuchet MS", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0;
  color: #FFFFFF;
}

.footer {
  position: absolute;
  bottom: 24px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

.footer a {
  font-size: 12px;
  color: #FFFFFF;
  text-decoration: none;
}

@media (min-width: 768px) {
  .subtext {
    max-width: 50%;
  }
}

@media (max-width: 767px) {
  .subtext {
    max-width: 100%;
    font-size: 18px;
    line-height: 24px;
  }
}

.footer .container {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer a:hover {
  text-decoration: underline;
}
