body {
  font-family: Arial, sans-serif;
  background: linear-gradient(to right, #d9a7c7, #fffcdc);
  text-align: center;
  margin: 30px;
}

#wishesContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

.wish {
  background: #e0f7fa;
  border: 1px solid #0097a7;
  border-radius: 8px;
  padding: 12px 20px;
  width: 300px;
  text-align: center;
  font-weight: bold;
  color: #006064;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
