/* Basic Reset */
body {
    font-family: 'Love Ya Like A Sister', cursive; /* Or any romantic font */
    background-color: #fff5f5; /* Soft pink background */
    color: #333; /* For general text */
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Flexbox Container */
.container {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    flex-direction: column; /* Stack children vertically */
    height: 100%;
    text-align: center;
}

#valentineImage {
    max-width: 80vh; /* 80% of the viewport height */
    max-height: 80vh; /* 80% of the viewport height */
    margin-bottom: 20px; /* Space below the image */
}


/* Style for H1 */
h1 {
    color: #ff6666;
    margin-bottom: 20px;
}

/* Button Group Styling */
.button-group {
    display: flex;
}

/* Button Styling */
.button-group button {
    padding: 10px 20px;
    margin: 0 10px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.button-group button {
    padding: 12px 25px;
    margin: 10px;
    font-size: 18px;
    border: none;
    border-radius: 30px; /* Rounded corners */
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow */
}

#yesButton {
    background-color: #4CAF50;
    color: white;
    background-image: linear-gradient(to right, #32CD32, #4CAF50); /* Gradient effect */
}

#noButton {
    background-color: #f44336;
    color: white;
    background-image: linear-gradient(to right, #FF6347, #f44336); /* Gradient effect */
}

.button-group button:hover {
    transform: scale(1.05); /* Slightly enlarge button on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
}

#yesButton:hover {
    background-color: #32CD32;
}

#noButton:hover {
    background-color: #FF6347;
}

#heartContainer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.heart {
    position: absolute;
    bottom: 0;
    width: 30px;
    height: 30px;
    background-image: url('heart.png'); /* Path to a heart image */
    background-size: cover;
    animation: floatUp 5s ease-in forwards;
}

@keyframes floatUp {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh);
        opacity: 0;
    }
}
