body {
    font-family: Helvetica, Arial, sans-serif;
    margin: 0px;
}

canvas {
    width: calc(90vw - 0px);
    height: calc(80vh - 0px);
}

.gameborder {
    border: 5px black solid;
    display: flex;
}

.game {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 90vh;
}

.admin {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 10vh;
}

.admin p {
    margin: 5px;
}

.admin div {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
}

.error {
    position: fixed;
    padding: 10vh 10vw;
    background-color: red;
    color: black;
    display: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

body {
    overflow: hidden;
}