.quiz-container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin: 0 auto; border: none;
}
#question { font-family: 'Arial', sans-serif; font-size: 18px; color: #FFFFFF;  }
#answers {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 10px;
}
.answer {
width: 327px;
height: 373px;
display: flex;
flex-direction: column;
background-color: #ffffff;
align-items: center;
justify-content: center;
border-radius: 9px; cursor: pointer;
padding-bottom: 30px;
}
.correcttextbox { background-color: #FFFFFF; 
color: #2ebb55;
font-family: "Open Sans", sans-serif; font-weight: bold; }
.incorrecttextbox { background-color:  #FFFFFF;
color: #f33c40;
font-family: "Open Sans", sans-serif; font-weight: bold; }
#textbox4 {  margin-top: 10px;
width: 100%; height: 60px;
padding: 15px;
background-color: #FFFFFF; border-radius: 10px;
border: none; opacity: 1;
}
.answer img {
margin-top: -5px;
width: 311px;
height: 311px;
margin-bottom: 10px;
}
.correct {
background-color: #2ebb55;
}
.incorrect {
background-color: #f33c40;
}