body{
      background-color: #901E3E;

}


h2 {
  color: darkred;
}
.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 40px auto;
  max-width: 1200px;
}
.card {
  width: 160px;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  text-align: center;
  padding: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: #333;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.card p {
  margin: 10px 0 0;
  font-weight: bold;
}
