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

h1 {
  color: #6f4e37;
}

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

.coffee-card {
  background: white;
  border-radius: 10px;
  padding: 15px;
  width: 220px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

.coffee-card:hover {
  transform: scale(1.05);
}

.coffee-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}


