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

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

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

.landing__title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e1e1e;
}

.landing__subtitle {
  font-size: 1rem;
  color: #aaa;
}

.landing__links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.landing__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem 1rem;
  background: #1e1e1e;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  transition:
    transform 0.2s,
    background 0.2s;
}

.landing__card:hover {
  transform: translateY(-4px);
  background: #475686;
}

.landing__card__icon {
  font-size: 2.5rem;
}

.landing__card__title {
  font-size: 1.2rem;
  font-weight: 600;
}

.landing__card__desc {
  font-size: 0.85rem;
  color: #aaa;
}

/* Tablette */
@media (min-width: 600px) {
  .landing__title {
    font-size: 2.5rem;
  }

  .landing__links {
    flex-direction: row;
    justify-content: center;
  }

  .landing__card {
    width: 200px;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .landing__title {
    font-size: 3rem;
  }

  .landing__subtitle {
    font-size: 1.2rem;
  }

  .landing__card {
    width: 250px;
    padding: 2.5rem 1.5rem;
  }

  .landing__card__icon {
    font-size: 3rem;
  }

  .landing__card__title {
    font-size: 1.4rem;
  }

  .landing__card__desc {
    font-size: 0.95rem;
  }
}
