body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #891b56a5;
    color: #ffffff !important;
  
}

#noButton {
    position: absolute;
    left: 50px;
    transition: 0.5s;
}

#yesButton {
    position: absolute;
    right: 50px;
}

.header_text {
    font-family: "Gilroy ExtraBold" ;
    font-size: 36px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 0;
}

.buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-left: 20px;
}

.btn {
    background-color: #333333;
    color: #ffffff;
    padding: 12px 24px;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

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

@media only screen and (max-width: 320px) and (max-height: 568px) {
    body {
        height: 100vh;
    }

    .header_text {
        font-size: 18px;
    }

    img {
        height: 50vh;
    }

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

@media only screen and (max-width: 414px) and (max-height: 736px) {
    body {
        height: 90vh;
    }

    .header_text {
        font-size: 24px;
    }

    img {
        height: 50vh;
    }

    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}
