@font-face {
    font-family: FreeSans;
    src: url(../assets/fonts/FreeMono.ttf);
}

@font-face {
    font-family: FreeSans;
    src: url(../assets/fonts/FreeMonoBold.ttf);
    font-weight: bold;
}

* {
    font-family: FreeSans;
    white-space: nowrap;
}

body {
    width: 100vw;
    height: 100vh;
    margin: 0;
    background-color: magenta;
    background-image: linear-gradient(#219ce5, #3dc2ed, #79fff8);
    overflow: hidden;
}

#game > canvas {
    width: 100%;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.row {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}

.full-width {
    width: 100%;
}

.col {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.full-height {
    height: 100%;
}

#title {
    text-align: center;
}

#instructions {
    color: #c500c5;
}

#options {
    display: none;
}

#error {
    display: none;
}

#game-container {
    display: none;
    justify-content: flex-end;
}

#game {
    display: flex;
}

#reset-wins-button {
    margin-right: 20px;
}

#red-wins {
    color: #ed2528;
    font-weight: bold;
}

#blue-wins {
    color: #5577fd;
    font-weight: bold;
}

#options-button {
    position: absolute;
    top: 10px;
    left: 10px;
    /*
    background-color: magenta;
    color: #c500c5;
    border-color: magenta;
    */
}