body {
    background: linear-gradient(135deg, #fceabb 0%, #f8b500 100%);
    /* Gold/Light gradient */
    background: linear-gradient(to right, #ffdde1, #ee9ca7);
    /* Pink gradient */
    font-family: 'Comic Sans MS', 'Happy Monkey', cursive, sans-serif;
    text-align: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    overflow: hidden;
}

.container {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 90%;
}

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

.heart-img {
    width: 150px;
    height: auto;
    margin-bottom: 30px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    height: 60px;
}

button {
    font-size: 1.2rem;
    padding: 10px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}

#yesBtn {
    background-color: #ff4d6d;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 77, 109, 0.4);
}

#yesBtn:hover {
    transform: scale(1.1);
    background-color: #ff2a55;
}

#noBtn {
    background-color: #e0e0e0;
    color: #666;
    position: relative;
}

.hidden {
    display: none;
}

#message {
    margin-top: 20px;
    color: #ff4d6d;
    animation: fadeIn 1s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* New styles for the photo */
.photo-container {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.us-photo {
    width: 300px;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    /* Soft rounded corners */
    box-shadow: 0 4px 15px rgba(255, 77, 109, 0.4);
    border: 5px solid #ff4d6d;
}