body{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
    margin: 0;
    background: rgb(255, 255, 210);
    overflow: hidden;
    position: relative;
}

.container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.gif_container{
    width: 600px;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
}

.gif_container img.changing_gif{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

.buttons{
    display: flex;
    justify-content: space-around;
    gap: 20px;
    position: relative;
}

.buttons button{
    border: none;
    border-radius: 5px;
    cursor: pointer;
    padding: 10px 20px;
    position: relative;
    z-index: 20;
}

.yes_button{
    background-color: rgb(0, 200, 0);
    z-index: 30;
}

.yes_button:hover{
    transform: scale(1.5);
    transition: transform 0.5s ease;
}

.no_button{
    background-color: red;
    z-index: 25;
}

@keyframes fall {
    to {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

h1 {
    transition: all 0.1s ease;
}

.signature {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    text-align: center;
    z-index: 10;
    animation: pulse 2s infinite;
    pointer-events: none;
}