* {
    font-family: "Calibri", sans-serif;
    box-sizing: border-box;
    color: black;
    background-color: white;
    font-size: 100%;
    margin: 0;
    padding: 0;
    transition-duration: 250ms;
}

*::selection {
    color: white;
    background-color: rgb(120, 190, 66);
}

body {
    font-size: 1.2em;
    overflow: hidden;
}

#main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    margin: auto;
    padding: 0;
    text-align: center;
}

#gameCanvas {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    padding: 0;

    max-width: 1000px;
    height: 400px;
    /*outline: 1.5px solid rgb(120, 190, 66);  TODO: remove */
    background-color: white;
}

#score {
    color: black;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    padding: 0;

    width: 88%; /* 90% */
    max-width: 980px; /* 1000px */
    height: 450px;
    background-color: transparent;
    text-align: right;
    z-index: 10;
}

#highScore {
    color: #5f5f5f;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    padding: 0;

    width: 88%; /* 90% */
    max-width: 980px; /* 1000px */
    height: 450px;
    background-color: transparent;
    text-align: left;
    z-index: 10;
}