body,
html {
  margin: 0;
  padding: 0;
  font-family: "Lato", sans-serif;
  height: 100%;
  width: 100%;
}

.open-sans {
  font-family: "Open Sans", sans-serif;
}

.container {
  border: solid;
  position: relative;
  height: 100vh;
  width: 100%;
  background-image: url("assets/fgnd-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  height: 100%;
  width: 100%;
}

.overlay-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.content {
  position: relative;
  z-index: 20;
  max-width: 1024px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.logo-wrapper {
  margin-top: auto;
}

.logo {
  cursor: pointer;
  width: 219px;
  height: auto;
}

.headline {
  color: white;
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 100%;
  margin-bottom: 0;
}

.subtext {
  margin-top: 1.5rem;
  color: #cecece;
  font-family: "Open Sans", sans-serif;
  font-size: 1.25rem;
  line-height: 1.5;
}

.contact {
  margin-top: 2rem;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}

.contact-block {
  font-size: 1rem;
  color: white;
  line-height: 1.5;
  text-align: left;
}

.contact-block p {
  margin: 0;
}

.contact-block strong {
  color: white;
}

.contact-block a {
  color: #cecece;
  text-decoration: none;
}

.contact-block a:hover {
  text-decoration: underline;
  color: white;
}

@media (min-width: 768px) {
  .headline {
    font-size: 4.25rem;
  }

  .subtext {
    font-size: 1.5rem;
  }

  .contact {
    flex-direction: row;
    gap: 6rem;
    margin-top: auto;
  }

  .contact-block {
    font-size: 1.125rem;
  }
}
