body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: #ffa7c5;
}

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

.question {
    font-size: 50px;
    color: #fff;
    text-align: center;
    font-weight: bold;
    margin-top: 50px;
}

.imageContainer {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mainGif {
    width: 300px;
    height: 300px;
}

.buttonsContainer {
    display: flex;
    justify-content: center;
    margin-top: 60px;
    position: relative;
}

.button {
    background-color: #fd61b8;
    color: white;
    font-size: 30px;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    margin: 10px;
    padding: 15px 40px;
    cursor: pointer;
    transition: transform 0.2s;
    position: relative;
}

.button:hover {
    transform: scale(1.05);
}

.hidden {
    display: none;
}

.yesText {
    color: white;
    font-size: 45px;
    font-weight: bold;
    text-align: center;
    margin-top: 100px;
}

.danceGif {
    display: block;
    margin: 0 auto;
    width: 400px;
    height: 400px;
}
