h1{
    color: white;
    font-family: 'Montserrat', sans-serif;
}

body{
    background-color: #262C52;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

input[type="checkbox"]{
    display: none;
}

label{
    display: inline-block;
    cursor: pointer;
    position: relative;
    padding: 10px;
    margin: 10px;
}

label img{
    height: 100px;
    width: 100px;
    transition: 0.2s;
}

label::before{
    content: "\2714";
    position: absolute;
    top: 5px;
    left: 7px;
    transition: 0.2s;
    text-align: center;
    background-color: #B1CA2C;
    border-radius: 50%;
    height: 20px;
    width: 20px;
    transform: scale(0);
}

:checked + label img{
    transform: scale(0.9);
    box-shadow: 0px 0px 5px black;
}

:checked + label::before{
    transform: scale(1.3);
    z-index: 1;
}

button{
    background-color: #B1CA2C;
    color: #262C52;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    padding: 15px;
    margin: 20px;
}

#BackButton{
    position: absolute;
    left: 0;
    bottom: 0;
}

#chosenPersonText{
    text-align: center;
}

#Bias{
    font-family: 'Montserrat', sans-serif;
    color: #262C52;
}

#BiasLevel{
    font-family: 'Montserrat', sans-serif;
    color: #262C52;
    max-width: 70px;
}