body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: sans-serif;
    background-color: black;
    color: white;
}

.screen {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}

.hidden {
    display: none;
}

#start-button,
.option,
#home-button {
    padding: 15px 30px;
    font-size: 1.2em;
    cursor: pointer;
}

#quiz-screen {
    background-color: #222121;
    overflow: hidden;
}

#quiz-container {
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #00ff0000;
}

#mask-wrapper {
    position: relative;
    max-width: 100vw;
    max-height: 100vh;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #06310a;
    aspect-ratio: 23/16;
    object-fit: contain
}

/* Dieses Element passt sich der Größe des Bildes an */
#mask-scaler {
    position: relative;
    height: 100%;
    width: 100%;
    max-width: 100vw;
    max-height: 100vh;
    /* aspect-ratio: 12/8; */
    /* oder je nach Bild, z. B. 4/3, 1/1, etc. */
    overflow: visible;
    object-fit: contain;
}

#mask-image {
    width: 100%;
    height: 100%;
    pointer-events: none;
    object-fit: contain;
    display: block;
    background-color: #f5af2c00;
}

#quizPic-container {
    top: 7%;
    left: 35%;
    position: absolute;
    transform: scale(100%);
    width: 30%;
    height: 42%;
    pointer-events: none;
    object-fit: contain;
    display: block;
    background-color: #4a20be00;
    z-index: -1 !important;
}

#mask-quizPic {
    position: relative;
    width: 100%;
    height: 100%;
    pointer-events: none;
    object-fit: contain;
    display: block;
    background-color: #12b82500;
    z-index: 0;
}

#background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.button-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.option {
    position: absolute;
    pointer-events: auto;
    background-color: rgba(152, 109, 9, 0);
    border: 2px solid rgba(0, 0, 0, 0);
    color: rgb(255, 255, 255);
    padding: 2.5px 5px;
    font-size: 12pt;
    max-width: 15%;
    max-height: 20%;
    height: 20%;
    width: 15%;
    cursor: pointer;
    z-index: 3;

    /* Zentrierung */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    transform: translate(-50%, -50%);
}

#timer-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    background-color: #00ff00;
    width: 100%;
    z-index: 4;
}


#option-0 {
    top: 67%;
    left: 29%;
}

#option-1 {
    top: 67%;
    left: 50%;
}

#option-2 {
    top: 67%;
    left: 73%;
}