.first_game .game-container {
    /*max-width: 600px;*/
    width: 100%;
    margin: 100px 0 40px;
    place-self: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    /*box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);*/
}

.first_game .question {
    margin: 20px 0;
}
.first_game .question span {
    font-weight: bold;
}
.first_game .answer-input {
    border: none;
    border-bottom: 1px solid #536387;
    font-size: 18px;
    font-weight: bold;
}
.first_game .submit-btn {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.first_game .submit-btn:hover {
    background-color: #218838;
}
.first_game .result {
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
}
.first_game h1 {
    font-size: 24px;
    text-align: center;
}
.first_game {
    display: flex;
    justify-content: space-around;
}
.first_game .input_answers{
    display: flex;
    flex-direction: column;
}
.first_game .input_answers label{
    margin-bottom: 10px;
}