html {
    font-family: 'Roboto Mono', monospace;
    /* font-size: 100%; */
}

row {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.teamName, .buttons, .score {
    display: inline-block;
}

.teamName {
    width: 5em;
}

.score, .buttons {
    margin-left: 1em;
}

.correct {
    background-color: lightgreen;
}

.incorrect {
    background-color: pink;
}