/* Import police Comfortaa */
@font-face {
  font-family: 'Comfortaa';
  src: url('https://fonts.gstatic.com/s/comfortaa/v47/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4WjMDrMfIA.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* STYLE GLOBAL */
body {
  font-family: 'Comfortaa', 'Segoe UI', sans-serif;
  background: #1a1a2e;
  color: #fff;
  padding: 40px;
  text-align: center;
}

h1 {
  color: #fff;
  font-size: 3em;
  margin-bottom: 30px;
}

/* CONTAINER DES BOUTONS */
#buttonsContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* STYLE DES CARTES */
#buttonsContainer > div {
  background: #222;
  border-radius: 10px;
  padding: 30px;
  width: 240px;
  text-align: center;
  box-shadow: 0 0 10px #000;
  transition: 0.3s;
}

/* HOVER */
#buttonsContainer > div:hover {
  background: rgba(0, 234, 255, 0.13);
  transform: translateY(-5px);
}

/* IMAGES */
#buttonsContainer img {
  width: 70px !important;
  height: 70px;
  object-fit: contain;
  margin-bottom: 15px;
}

/* LIENS DES BOUTONS */
#buttonsContainer a {
  display: block;
  text-decoration: none;
  color: #ffffff;
  font-size: 1.3em;
  font-weight: bold;
}

/* FOOTER */
footer {
  margin-top: 50px;
  font-size: 1em;
  color: #aaa;
}

footer a {
  color: #00eaff;
  text-decoration: none;
}
