body {
    font-family: 'Arial', sans-serif;
    text-align: center;
    background-color: #ffecec;
    margin: 0;
    padding: 0;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.hidden {
    display: none;
}

h1 {
    font-size: 2rem;
    color: #d63384;
    margin-bottom: 20px;
}

.image-frame {
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
    display: inline-block;
}

.yay-text {
    font-size: 3rem;
    font-weight: bold;
    color: #d63384;
    margin-bottom: 10px;
}

.message {
    font-size: 1.5rem;
    font-weight: bold;
    color: #d63384;
    margin-top: 15px;
}

.buttons {
    margin-top: 20px;
}

button {
    background-color: #ff4081;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.2s, background-color 0.3s;
}

button:hover {
    background-color: #d63384;
}

button:active {
    transform: scale(0.9);
}

body {
    font-family: 'Arial', sans-serif;
    text-align: center;
    background: linear-gradient(135deg, #ffffff, #e79abe;
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    margin: 0;
    padding: 0;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}