body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f4f6f4;
    font-family: 'Nunito', sans-serif;
}

/* Контейнер */
.container {
    position: relative;
    width: 100%;
    max-width: 400px;
    text-align: center;
    padding: 20px;
}

/* Заголовок */
.header_text {
    font-size: 32px;
    font-weight: bold;
    color: #FFB6C1;
}

/* GIF */
.gif_container img {
    width: 100%;
    max-width: 250px;
}

/* Кнопки */
.buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* Общий стиль кнопок */
.btn {
    background-color: #FFB6C1;
    color: white;
    padding: 12px 24px;
    font-size: 16px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
}

/* Да — обычная */
#yesButton {
    position: relative;
}

/* Нет — убегающая */
#noButton {
    position: absolute;
    top: 70%;
    left: 60%;
}

/* 📱 Адаптив */
@media (max-width: 480px) {
    .header_text {
        font-size: 24px;
    }

    .btn {
        font-size: 14px;
        padding: 10px 18px;
    }

    .gif_container img {
        max-width: 200px;
    }
}