body {
  font-family: 'Arial', sans-serif;
  background-color: #f0f8ff00;
  color: #333;
  text-align: center;
  margin-top: 5vh;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70vh;
}
html {
  height: 100%;
  background-image: url('../imgs/mothers-day-background-0n651izeylc4n9z1.jpg');
  background-size: cover;
  background-repeat: no-repeat;
}

h1 {
  font-size: 2em;
  color: #ff69b4;
  margin-bottom: 1vh;
}

p {
  font-size: 1em;
  margin-bottom: 0.5vh;
  color: #ffffff;
}

button {
  padding: 0.5vh 1vh;
  font-size: 0.9em;
  color: #fff;
  background-color: #ff69b4;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

@media (max-width: 600px) {
  h1 {
    font-size: 2em;
  }
  p {
    font-size: 1em;
  }
}

.container {
  background: rgba(0, 0, 0, 0.6);
  border-radius: 16px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  padding: 30px;
  transition: transform 0.3s ease;
}

button:hover {
  background-color: #ff1493;
  transform: scale(1.05);
  transition: 0.2s;
}

input {
  padding: 12px;
  border-radius: 8px;
  border: none;
  width: 100%;
}
