.panel{
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.question-container{
    margin-left: 10%;
	margin-right: 10%;
    padding: 5px;
    width: 80%;
    height: auto;
    background-color: #373941;
    font-size: 18px;
    text-align: center;
    color: white; 
}
.result{
    margin-left: 25%;
	margin-right: 25%;
    width: 50%;
    height: auto;
    text-align: center;
    font-size: 30px;
     
}
.option-container{
    display: block;
    justify-content: space-around;
    margin-left: 10%;
	margin-right: 10%;
    padding: 5px;
    width: 80%;
    height: auto;
    background-color: #373941;  
       
}
.option{   
	margin-top: 10px;
	margin-bottom: 10px;
    margin-left: 10%;
	margin-right: 10%;
    padding: 5px;
    width: 80%;
    height: auto;
    font-size: 15px;
    background-color: white;
    border-radius: 0%;
}

.navigation{
	margin-top: 10px;
    margin-left: 10%;
	margin-right: 10%;
    padding: 5px;
    width: 80%;
    height: auto;
    display: block;
    justify-content: space-around;
    background-color:#373941;
}
 
.evaluate,.next{
	margin-top: 5px;
	margin-bottom: 5px;
	margin-left: 10%;
	margin-right: 10%;
    width: 80%;
    height: auto;
    padding: 5px;
    font-size: 15px;
}

.evaluate{
	color: black;
    background-color: #50DBB4;
}

.evaluate:disabled{
	color: black;
    background-color: #50DBB4;
}

.next{
    color: white;
    background-color: #88be4c;
}

.next:disabled{
    color: white;
    background-color: #88be4c;
	filter: brightness(0.5);
}