::selection {
  color: #000000;
  background: #f6d30b;
}

body {
  box-sizing: border-box;
  margin: 0;
  padding: 16px;
  width: 100vw;
  height: 100vh;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  background-color: #f8f6e8;
  font-family: "Montserrat", sans-serif;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 90vw;

  animation: fade-in 0.8s ease;
}

.logo {
  max-height: 173px;
  height: fit-content;
  max-width: 90vw;
}

.slogan {
  max-width: 90vw;
  font-size: 24px;
  font-weight: 400;
  text-align: center;
  margin: 0;
}

.mail {
  color: #000000;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  margin: 0;
}

footer {
  position: fixed;
  bottom: 0;
  height: 32px;
  width: 100vw;
  color: #000000;
  text-align: center;
  font-size: 12px;
}

@keyframes fade-in {
  0% {
    transform: translateY(32px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
