*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  background-color: #7B1A1A;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: 'Lato', sans-serif;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: clamp(3rem, 12vw, 9rem);
  color: #E5E5E5;
  letter-spacing: 0.04em;
  user-select: none;
}

.logo .highlight {
  color: #E0A93A;
}

footer {
  background-color: #E5E5E5;
  padding: 1.25rem 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 3rem;
}

.footer-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.footer-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6E6E6E;
}

.footer-value {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: #1C1C1C;
}

.footer-divider {
  width: 1px;
  background-color: #3A3A3A;
  opacity: 0.15;
  align-self: stretch;
}

@media (max-width: 480px) {
  .footer-divider {
    display: none;
  }

  footer {
    gap: 1rem 2rem;
  }
}
