html {
    font-family: Arial;
}

.button {
    background-color: white;
    border: 2px solid #e7e7e7;
    padding: 16px 64px;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
}

.navbar img {
    width: 150px;
}

@media only screen and (max-width: 768px) {
    .button {
        padding: 8px 32px;
    }

    .navbar img {
        width: 100px;
    }
}

.yes {
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
    color: green;
}

.no {
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
    color: red;
}

.button:hover {
    background-color: #e7e7e7;
}

#scroll {
    display: none;
}

.scroll-down-button {
    position: fixed;
    z-index: 999;
    right: 40px;
    bottom: 30px;
    cursor: pointer;
    background-color: transparent;
    border: none;
    padding: 0;
    outline: none;
    animation: moveUpDown 2s infinite;
}

.theme {
    margin: 0;
}

@keyframes moveUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px); /* Adjust the movement distance as needed */
    }
}

.arrow-down {
    height: 30px;
    width: 30px;
    border: solid grey;
    border-width: 0 6px 6px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

hr {
    width: 50%;
    border: 1px solid #3a3a3a;
}

.question-box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0;
    z-index: 100;
}

.question {
    max-width: 50%;
}

.advice {
    text-align: center;
    margin: 0 10% 0 10%;
}

#advice, #advice-header, #advice-header2 {
    display: none;
}

#advice-box {
    background-color: white;
    box-shadow: 2px 4px 15px rgba(0, 0, 0, 0.2);
    border-radius: 25px;
    padding: 20px;
    margin-top: 30px;
}

div {
    margin-top: 20px;
}