body{
    height: 100%
}

#gameBoxSlingshot {
    background-color: violet;
    position: relative;
    width: 100%;
    height: 75vh;
    overflow: hidden;
}

#answerBox {
    display: flex;
    background-color: purple;
    height: 30vh;
}

.optionBox {
    background-color: rgb(253, 248, 149);
    border: 5px solid rgb(71, 255, 71);
    padding: 15px;
    border-radius: 8px;
    margin: 5px;
    color: black;
    width: 15%;
    max-height: 15%;
    align-content: center;
}

#slingshotImg {
    width: 50%;
    justify-content: center;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%)
}

#stoneImg {
    position: absolute;
    width: 20%;
    bottom: 10%;
    left: 52%;
    transform: translateX(-50%);
    background-color: antiquewhite;
}

.richtigAntwort {
    background-color: lightgreen;
}

.falschAntwort {
    background-color: lightcoral;
}