body {
  background: red;
}
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: #f8f8f8;
}

/* TITRES */
h1, h2 {
  font-family: 'Playfair Display', serif;
}

/* BOUTONS */
button {
  background: #ff6a00;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
}

button:hover {
  background: #e55a00;
}

/* SECTION */
section {
  padding: 40px;
}

/* CARTES */
.card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  margin: 10px;
}
