/* ====== GLOBAL ====== */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #fafafa;
}

header, footer {
  background-color: #db1ef0;
  color: white;
  padding: 15px;
  text-align: center;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  justify-content: center;
  padding: 0;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

nav a:hover {
  color: #ffcc00;
}

/* ====== FLEX SECTION ====== */
.flex-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 30px;
  justify-content: center;
}

.card {
  width: 280px;
  background: white;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 0 5px rgb(208, 48, 176);
}

.card img {
  width: 100%;
  border-radius: 8px;
}
