*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background-color: #000;
  color: #e8e8e8;
  font-family: Georgia, "Times New Roman", serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 1.5rem 4rem;
  background-color: #000;
}

.logo {
  width: min(420px, 85vw);
  height: auto;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fade-in 2s ease-out forwards;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content {
  width: min(640px, 100%);
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.description {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #d4d4d4;
  letter-spacing: 0.01em;
}

.description strong {
  color: #fff;
  font-weight: 600;
}

.description--fr {
  color: #b8b8b8;
  font-style: italic;
}

@media (min-width: 600px) {
  body {
    padding-top: 4.5rem;
  }

  .description {
    font-size: 1.125rem;
  }
}
