.screen {
    background-color: #0000;
    width: 100vw;
    /* Full width of the viewport */
    height: 100vh;
    /* Full height of the viewport */
    display: flex;
    justify-content: center;
    /* Center the game screen horizontally */
    align-items: center;
    /* Center the game screen vertically */
    font-family: 'Barlow', sans-serif !important;
}

.screen-game {
    background-color: #f8f8f8;
    background-size: cover;
    width: auto;
    height: 80vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px;
    border-radius: 10px;
    padding: 12px;
    overflow-y: hidden;
    overflow-x: hidden;
    margin: 1%;
}

.question-image {
    grid-column: 1;
    grid-row: 1 / span 3;
    width: 94%;
    height: 60vh;
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    background-color: #f8f8f8;
    overflow: hidden;
}

.question-image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.question-container {
    height: 20vh;
    grid-column: 2;
    text-align: center;
}

.question-container h3 {
    padding-left: 20px;
    overflow-wrap: break-word;
    word-break: break-word;
    width: 100%;
    font-weight: 500;
    font-size: 28px;
    font-weight: 400;
    color: #2f2d32;
    font-family: 'Barlow', sans-serif;
}

.answer-option {
    background-color: #d26f4b;
    color: #2f2d32 !important;
    height: 50px;
    width: 96%;
    margin: 10px;
    border-radius: 10px;
    border: none;
    font-family: 'Barlow', sans-serif;
    font-weight: 600 !important;
    cursor: pointer;
}

.question-number-container {
    grid-column: 2;
    background-color: #f6de49;
    height: 28px;
    width: 60px;
    border-radius: 10px;
    overflow: hidden;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    user-select: none;
    animation: fadeIn 0.3s ease;
    animation-duration: 0.3s;
    z-index: 0;
}

.question-number-container p {
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #2f2d32 !important;
    margin: 0 auto;
}

.question-number-container p .digit {
    font-size: 16px;
    vertical-align: top;
}

.question-number-container p .smaller {
    font-size: 10px;
}

.start-game-btn {
    background-color: #d26f4b;
    color: #f8f7f8;
    height: 50px;
    width: 30%;
    margin: 10px auto;
    display: block;
    border-radius: 10px;
    border: none;
    font-family: 'Barlow', sans-serif;
    font-weight: 600 !important;
    cursor: pointer;
    text-transform: uppercase;
}

.restart-game-btn {
    background-color: #f6de49;
    color: #f8f7f8;
    height: 32px;
    width: 18%;
    margin: 42px;
    display: block;
    border-radius: 10px;
    border: none;
    font-family: 'Barlow', sans-serif;
    font-weight: 500 !important;
    cursor: pointer;
}

.start-quiz-image {
    height: 240px;
    display: block;
    margin: 12px auto;

}

.screen-start {
    background-color: #0000;
    height: 100vh;
    /* Full height of the viewport */
    justify-content: center;
    /* Center the game screen horizontally */
    align-items: center;
    /* Center the game screen vertically */
    font-family: 'Barlow', sans-serif !important;
}

.welcome-message {
    color: #2f2d32;
    display: block;
    margin: 0px auto;
    text-align: center;
    padding-left: 89px;
    padding-right: 89px;
}

.welcome-message h1 {
    color: yellowgreen;
}

.welcome-message h3 {
    font-weight: bold;
}

#totalAttemptedQuestions {
    color: blue;
    font-weight: bold;
}

#correctAnswers {
    color: yellowgreen;
    font-weight: bold;
}

.music-control {
    position: absolute;
    right: 52px;
}

.form-check-input {
    background-color: #f8f7f8;
    border-color: #d26f4b !important;
}

.form-check-input:checked {
    background-color: #d26f4b !important;
}