body {
  font-family: "Titillium Web", sans-serif;
  background-color: #000000;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: top;
  padding-top: 5rem;
  min-height: 80vh;
  text-align: center;
}

footer {
  font-size: clamp(1.2rem, 1vw + 0.5rem, 1.4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem;
}

a {
  color: #ffffff;
  text-decoration: none;
}

a:hover {
  color: #e63946;
}

svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.navigation {
  font-size: clamp(1.8rem, 2vw + 0.5rem, 2rem);
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
  gap: 0.8rem;
}

.logo {
  max-width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.03);
}

.logo-small {
  height: auto;
  width: clamp(300px, 40vw, 500px);
  max-width: 100%;
  display: block;
  align-self: center;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

@media (min-width: 500px) {
  .navigation {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }

  footer {
    flex-direction: row;
    justify-content: center;
    gap: 1.8rem;
  }
}

@media (max-width: 500px) {
  main {
    min-height: auto;
    padding-bottom: 6rem;
  }

  .social-links svg {
    width: 34px;
    height: 34px;
  }
}
