#versus-box {
    display: flex;
    flex-flow: row;
    justify-content: center;
    margin: 40px auto;
}

#vs-box {
    display: flex;
    flex-flow: column;
    font-size: 3em;
    font-weight: bold;
    justify-content: center;
    /* FIXME: Using % in flex items is not recommended.
       https://www.w3.org/TR/css-flexbox-1/#item-margins

       Find another way to place space to the left and right of this
       #vs-box. Maybe transparent images of class ".img-reducible" or
       transparent images with a given flex-shrink factor?
    */
    margin: 0px 5%;
    text-align: center;
    text-shadow: 0px 2px 1px black;
}

.team-box {
    text-align: center;
}

.team-name,
.team-score {
    color: white;
    font-size: 2.5em;
    font-weight: bold;
}

.team-score {
    cursor: pointer;
    user-select: none;
}

.team-logo-box {
    position: relative;
}

.condition {
    font-weight: bold;
    text-shadow: 0px 2px 1px black;
}

.kick-off-ball-box {
    position: absolute;
    bottom: 8px;
    left: 0px;
    right: 0px;
    height: 40px;
    text-align: center;
}

.kick-off-ball {
    visibility: hidden;
}
