#game-window {
    min-height: 100vh;
}

#game-canvas {
    width:      100%;
    height:     800px;
    min-height: 201px;
}

#game-canvas, #game-window {
    background: #000;
}

.fps-counter {
    position:            fixed;
    top:                 0;
    right:               0;
    padding:             2px 5px;
    border-radius:       0 0 0 3px;
    background:          rgb(0, 255, 0);
    -webkit-user-select: none;
    -moz-user-select:    none;
    -ms-user-select:     none;
    user-select:         none;
    font-family:         monospace;
    font-weight:         bold;
    font-size:           14px;
}

#tag-line {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}