body {
  font-family: Arial, sans-serif;
  background-color: #FAF3E0;
  text-align: center;
}

h1 {
  color: #FF69B4;
  margin-bottom: 20px;
}

.ice-cream-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.ice-cream {
  width: 200px;
  position: relative;
  border: 1px solid #ddd;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.ice-cream img {
  width: 100%;
  height: auto;
}

.ice-cream-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 10px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ice-cream:hover .ice-cream-overlay {
  opacity: 1;
}
