body {
    width: 100%;
    height: 100%;
    padding: 0;
    background-color: #010204;
    color: #d6ab3b;
}

.main-container {
    width: 100%;
    max-width: 800px;
    height: 100%;
    margin: auto;
    display: flex;
    flex-flow: column nowrap;
    align-items: stretch;
    justify-content: space-between;
}

.header img {
    width: 100%;
}

.footer-spacer {
    flex-grow: 0.2;
}

.state-icon {
    font-size: 500%;
    margin-bottom: 1rem;
}

.loading {
    padding: 2em;
    text-align: center;
}

.connection-lost {
    padding: 2em;
    text-align: center;
}

.idle {
    padding: 2em;
    text-align: center;
}

.register {
    padding: 2em;
    text-align: center;
}

.welcome_message {
    font-size: 120%;
}

.register-form {
    margin-top: 2em;
}


.question-container {
    padding: 1em;
    overflow-y: auto;
}

.question {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
}

.question-title {
    font-size: 200%;
    font-weight: bold;
    text-align: center;
}

.question-image img {
    margin-top: 1em;
    max-width: 80vw;
    max-height: 25vh;
}

.question-description {
    margin-top: 1em;
    text-align: center;
}

.question-choices {
    margin-top: 1em;
}

.question-choice-subtitle {
    margin-top: 0.8em;
    font-size: 150%;
    font-weight: bold;
}

.question-choice {
    margin-top: 0.5em;
    font-size: 150%;
    display: flex;
    flex-flow: row nowrap;
    gap: 0.5em;
}

.btn-question-submit {
    margin-top: 2em;
}

.question-sending-answer {
    margin-top: 2em;
}

.question-answer-sent, .question-answer-already-sent, .question-answer-error {
    margin-top: 2em;
    padding: 0 1em;
    font-size: 160%;
    text-align: center;
}

.question-correct-choice {
    font-weight: bold;
}

.buttons-send-comment {
    padding: 1em;
    text-align: center;
}

.comment-input-container {
    padding: 1em;
}

.comment-input {
    width: 100%;
    height: 20em;
}

.send-comment-validate {
    text-align: center;
}

.comment-sent {
    text-align: center;
    font-size: 120%;
    font-weight: bold;
    padding-top: 1em;
}