body {
    font-family: 'Arial', sans-serif;
    background-color: #ffb6c1; /* Light pink background */
    color: #ffffff; /* White text color for better contrast */
    text-align: center;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100vh; /* Full viewport height */
}

header {
    background-color: #ff8aa3; /* Complementary pink color */
    padding: 20px;
    color: white;
    font-family: 'Lobster', cursive; /* Fancy font for the header */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

footer {
    background-color: #ff8aa3; /* Complementary pink color */
    color: white;
    padding: 10px;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
}

main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

h1 {
    margin: 0;
    font-size: 2.5rem;
}

.valentine-message, .message-content {
    padding: 40px; /* Increased padding */
    border: 2px solid #ffffff; /* Solid white border */
    border-radius: 20px; /* More rounded corners */
    background-color: rgba(255, 182, 193, 0.9); /* Semi-transparent light pink background */
    max-width: 500px; /* Increased width */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
    font-family: 'Lobster', cursive; /* Fancy font for the message */
}

.valentine-message h2, .message-content h2 {
    margin: 0 0 20px;
}

.choice-button, .back-button {
    background-color: #ff8aa3; /* Complementary pink background */
    color: #ffffff; /* White text */
    border: none; /* Remove border */
    padding: 10px 20px;
    margin: 10px;
    cursor: pointer;
    border-radius: 50px; /* Rounded buttons */
    box-shadow: 0 4px #d3545d;
    transition: transform 0.2s, background-color 0.2s, color 0.2s;
    font-family: 'Lobster', cursive; /* Fancy font for the buttons */
    font-size: 1rem;
    outline: none; /* Remove outline */
}

.choice-button:hover, .back-button:hover {
    background-color: #ff69b4; /* Darker pink background on hover */
    color: #ffffff; /* White text on hover */
    transform: translateY(-2px);
}

.choice-button:active, .back-button:active {
    background-color: #ffffff; /* White background on active */
    color: #ff69b4; /* Darker pink text on active */
    transform: translateY(2px);
    box-shadow: 0 2px #d3545d;
}

.back-button {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 1.2rem; /* Slightly larger font size */
    padding: 12px 24px; /* Slightly larger padding */
    z-index: 1000; /* Ensure it stays on top */
}