body {
    background-color: antiquewhite;
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 100px;
    font-weight: 900;
    color: red;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

#top-gif {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 10px;
}

.yes {
    font-size: 100px;
    color: white;
    background-color: green;
    border: none;
    transition: transform 0.5s ease;
    border-radius: 12%;
}

.no {
    font-size: 100px;
    color: white;
    background-color: red;
    border-radius: 12%;
    border: none;
}

#result {
    display: none;
    text-align: center;
    margin-top: 20px;
    border-radius: 12%;
}

#result h2 {
    font-size: 50px;
    color: green;
}

#result img {
    margin-top: 10px;
}
