@import url("https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,500;9..40,700&display=swap");

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

body {
  background-color: #010204;
  color: #ffffff;
  font-family: "DM Sans", sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  padding: 2rem;
}

.landing__logo {
  height: 2.5rem;
  width: auto;
}

.landing__titre {
  font-size: 1rem;
  font-weight: 500;
  color: hsla(0, 0%, 100%, 0.6);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.landing__boutons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
}

.landing__btn {
  display: inline-block;
  text-decoration: none;
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.75rem 2.5rem;
  border-radius: 2rem;
  transition: opacity 0.2s ease;
  min-width: 14rem;
  text-align: center;
}

.landing__btn:hover {
  opacity: 0.85;
}

.landing__btn--site {
  background-color: #69c9c9;
  color: #010204;
}

.landing__btn--admin {
  background-color: transparent;
  color: hsla(0, 0%, 100%, 0.6);
  border: 1px solid hsla(0, 0%, 100%, 0.2);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.5rem 2rem;
}
