.row-container {
    display: flex;
    justify-content: space-between;
}

.digital-clock-with-answers-container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center children horizontally */
    width: 33%;
    margin-bottom: 2.5rem;
    margin-right: 1rem;
}

.digital-clock-container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center children horizontally */
    margin-bottom: 0.7rem;
    margin-top: -1.2rem;
}


.digital-clock-container img {
    width: 110px;
}

.clock_multiple_choice_container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: #afd2e2 2px solid;
    padding: 5px;
    font-weight: normal;
    width: 100px;
    height: 40px;
    border-radius: 5px;
    margin: 2px;
    font-size: 12px;
    color: #085ba7;
    white-space: normal;
    word-wrap: break-word;
    overflow: hidden;
}

.clock_multiple_choice_container p {
    margin: 0;
}

.clock_answer_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 220px;
}


.correct_clock_answer {
    border: 2px solid green;
    color: green;
    font-weight: bold;
    border-radius: 5px;
}

.question-number {
    align-self: flex-start;
}


