h1 {
    max-width: none;
}

.timer-section {
    display: none;
}

.game-result-section {
    display: none;
}

#question-image-container {
    margin: auto;
    width: fit-content;
}

#question-image {
    width: 100%;
    max-width: 400px;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
    cursor: pointer;

    user-select: none;
    -webkit-user-select: none;
    /* Safari */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* IE/Edge */
}

#answer-buttons {
    margin-top: 10px;
}

#answer-buttons button {
    margin-left: 10px;
    margin-right: 10px;
}

.fullscreen {
    max-height: none !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    object-fit: contain !important;
    background-color: rgba(0, 0, 0, 0.24);
    z-index: 9999 !important;
    margin: 0 !important;
    padding: 3% !important;
    cursor: pointer !important;
    overflow: scroll;
}

.magnify-icon {
    position: absolute;
    margin: 10px;
    width: 24px;
    height: 24px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    cursor: pointer;
    padding: 3px;
}

.magnify-icon svg {
    width: 14px;
    height: 14px;
    fill: white;
}

.circle {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: inline-block;
    margin: 20px 0px 0px 0px;
    background-color: rgba(0, 0, 0, 0.315);
}

#final-result-score {
    font-family: 'Luckiest Guy', cursive;
    font-size: 3.5rem;
    color: #1D2D6D;
}

.disabled {
    opacity: 0.5;
}

.disabled:hover {
    transform: scale(1);
}

.correct {
    background-color: #c2ffc2;
}

.wrong {
    background-color: #ffc2c2;
}

#btn-next {
    animation: glow 1s infinite ease-in-out;
}


@keyframes glow {
    0% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.7;
    }
}

button {
    border-width: 1px;
}

#next-back-buttons {
    margin-top: 10px;
}