
body {
  margin: 0;
  padding: 0;
  font-family: "Comic Sans MS", "Segoe UI", sans-serif;
  background: linear-gradient(135deg, #fff9c4, #ffe0b2);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.card {
  text-align: center;
  background: #fffbe6;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  padding: 30px;
  max-width: 500px;
  width: 90%;
}

.house-img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 20px;
}

h1 {
  color: #e65100;
  margin-bottom: 10px;
}

p {
  font-size: 16px;
  color: #333;
  margin: 5px 0;
}

.gift-title {
  margin-top: 25px;
  color: #bf360c;
}

.gift-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.gift-buttons button, .send-button {
  background-color: #f57f17;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.gift-buttons button:hover, .send-button:hover {
  background-color: #e65100;
}

.custom-gift-form {
  margin-top: 30px;
  text-align: left;
}

.custom-gift-form h2 {
  color: #1a237e;
  font-size: 20px;
  margin-bottom: 5px;
}

.custom-gift-form p {
  font-size: 14px;
  color: #444;
  margin-bottom: 10px;
}

.custom-gift-form textarea {
  width: 100%;
  height: 60px;
  padding: 10px;
  font-size: 14px;
  border: 2px solid #ccc;
  border-radius: 8px;
  resize: none;
  margin-bottom: 10px;
}

a {
  text-decoration: none;
  color: #00796b;
  font-weight: bold;
  display: inline-block;
  margin-top: 20px;
}
