* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    background-color: #fce4ec;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    text-align: center;
    overflow: hidden;
    height: 100vh;
}

h1 {
    font-size: 24px;
    margin-top: 20px;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 200px 0;
}

.image-container{
    width: 150px;
}

.character {
    height: auto;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

#bubu {
    transition: transform 0.5s ease-in-out;
}

#dudu {
    width: 120px;
    transition: transform 0.5s ease-in-out;
}

button {
    font-size: 18px;
    padding: 10px 20px;
    margin: 20px;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    background-color: #4CAF50;
    color: white;
}

#yes {
    background-color: #4CAF50;
    color: white;
}

#no {
    background-color: #FF5722;
    color: white;
}


/* Heart floating effect */
.heart {
    position: absolute;
    color: #ff4081;
    font-size: 24px;
    animation: floatUp 2s ease-out forwards;
}

@keyframes floatUp {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh);
        opacity: 0;
    }
}

/* Storm Effect */
#storm {
    font-size: 50px;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.hidden {
    display: none;
}