body {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    background-color: #ffebee;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image:url(IMG_5465.JPG);
    background-size: cover;
    overflow-x: hidden;
}

.container {
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    padding: 30px;
    width: 90%;
    max-width: 600px;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite alternate;
}

h1 {
    color: #e91e63;
    margin-bottom: 20px;
    font-size: 2.5em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

p {
    color: #555;
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 25px;
}

.heart {
    color: #e91e63;
    font-size: 2em;
    animation: heartbeat 1.5s infinite;
    display: inline-block;
}

.btn {
    background-color: #e91e63;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 1.1em;
    cursor: pointer;
    margin: 10px;
    transition: all 0.3s;
    box-shadow: 0 4px 8px rgba(233, 30, 99, 0.3);
}

.btn:hover {
    background-color: #c2185b;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(233, 30, 99, 0.4);
}

.btn:active {
    transform: translateY(1px);
}

.hidden {
    display: none;
}

#messageContainer {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    background-color: #f8bbd0;
    color: #ad1457;
}

.flowers {
    position: absolute;
    width: 30px;
    height: 30px;
    background-image: url('FOTO\ AMENG.jpg');
    background-size: contain;
    pointer-events: none;
    animation: fall 5s linear infinite;
}

.polaroid {
    background: white;
    padding: 15px 15px 40px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    margin: 20px auto;
    max-width: 250px;
    transform: rotate(-5deg);
    transition: all 0.3s;
}

.polaroid:hover {
    transform: rotate(0deg) scale(1.05);
}

.polaroid img {
    width: 100%;
    height: auto;
    border: 1px solid #eee;
}

.polaroid p {
    text-align: center;
    font-family: 'Comic Sans MS', cursive;
    color: #333;
    margin-top: 10px;
    font-size: 1em;
}

@keyframes pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.02); }
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(1); }
    75% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes fall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Responsive design */
@media (max-width: 600px) {
    .container {
        width: 95%;
        padding: 20px;
    }
    
    h1 {
        font-size: 1.8em;
    }
    
    p {
        font-size: 1em;
    }
}