.multiselectGame{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}
.multiselectGame .question{
    font-family: Calibri;
    font-size: 16px;
    position: absolute;
    top: 30px;
    left: 50%;
    margin-left: -250px;
    width: 500px;
    text-align: center;
}
.multiselectGame .choiceContainer{
    position: absolute;
    top: 70px;
    left: 20px;
}
.multiselectGame .choice{
    position: relative;
    cursor: pointer;
    width: 200px;
    height: 30px;
    display: block;
    border-radius: 5px;
    font-family: Arial;
    font-size: 16px;
    color: #202020;
    padding-top: 10px;
    margin: 10px;
    text-align: center;
    text-shadow: 0px 0px 1px rgba(163, 156, 137, 1);
    background-image: url(button.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 50% 50%
}
.multiselectGame .choice:hover{
    color: yellow;
}
.multiselectGame .choice.selected{
    color: #FFFFFF;
}
.multiselectGame .correct{
}
.multiselectGame .incorrect{
}
.multiselectGame button.check{
    position: absolute;
    right: -170px;
    bottom: 40px;
    z-index: 200;

}