/* General Page Styling */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    background: url('https://i.pinimg.com/originals/a3/c2/8f/a3c28f3627c816ed33b8f0dd2bb47ece.gif') center/cover no-repeat fixed;
    color: #ff3366;
    margin: 0;
    padding: 0;
    /* Center Content on the Page */
.center-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Makes it take the full height of the page */
}   
}

/* Main Title */
h1 {
    font-size: 2.5em;
    margin-top: 50px;
}

/* Buttons */
button {
    font-size: 1.5em;
    padding: 15px 30px;
    margin: 20px;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    transition: 0.3s;
}

/* Yes Button */
#yes-btn {
    background-color: #ff66b2; /* Light pink */
    color: white;
}

#yes-btn:hover {
    background-color: #ff3385; /* Darker pink */
}

/* No Button */
#no-btn {
    background-color: #666; /* Gray */
    color: white;
}

#no-btn:hover {
    background-color: #444; /* Darker gray */
}
#love-letter {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh; /* Makes it take the full height of the page */
}

/* Background applied only to the content */

#love-letter-content {
    background-color: #9A7B47 !important; /* Burnt paper color */
    padding: 20px; /* Smaller padding initially */
    border-radius: 10px;
    font-family: 'Cursive', serif;
    color: black;
    text-align: center;
    max-width: 500px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
    margin: 0 auto; /* Centers it horizontally */
    transition: all 0.5s ease-in-out;
}


#love-letter {
    display: none; /* Keep it hidden until revealed */
}

    


#reveal-btn {
    background-color: #ff66b2;
    color: white;
    font-size: 1.2em;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

#reveal-btn:hover {
    background-color: #ff3385;
}
/* Next Button */
#next-btn {
    background-color: red; /* Make it red */
    color: white;
    font-size: 1.5em;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

/* Add a hover effect for a darker red when hovered */
#next-btn:hover {
    background-color: darkred;
}