body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
    background-color: #89CFF0; /* Baby blue for a friendly and welcoming background */
}

#noButton {
    position: absolute;
    margin-left: 150px;
    transition: 0.5s;
}

#yesButton {
    position: absolute;
    margin-right: 150px;
}

.header_text {
    font-family: 'Nunito', sans-serif;
    font-size: 2.5em; /* Increased for better readability */
    font-weight: bold;
    color: #03396C; /* Dark blue for strong contrast and accessibility */
    text-align: center;
    margin-top: 20px;
    margin-bottom: 0px;
}

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

.btn {
    background-color: #5DADEC; /* Slightly darker shade of baby blue for the buttons */
    color: #FFFFFF; /* White text for contrast and readability */
    padding: 1em 2em;
    text-align: center;
    display: inline-block;
    font-size: 1em;
    margin: 4px 2px;
    cursor: pointer;
    border: none;
    border-radius: 12px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #B0E0E6; /* Lighter shade for the hover effect */
    color: #03396C; /* Dark text color on hover for contrast */
}

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

@media only screen and (max-width: 320px) and (max-height: 568px) {
    .header_text {
        font-size: 1.25em;
    }

    .btn {
        padding: 0.5em 1em;
        font-size: 0.75em;
    }
}

@media only screen and (max-width: 414px) and (max-height: 736px) {
    .header_text {
        font-size: 1.75em;
    }

    .btn {
        padding: 0.75em 1.5em;
        font-size: 0.9em;
    }
}

input[type="text"] {
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #7B9E9E; /* Complementing color for the input border */
    border-radius: 5px;
}

form {
    text-align: center;
}
