*{
    font-family: Verdana;
}

body {
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    margin: 0;
}

#board{
    width: 990px;
    border: solid 1px white;
    display: flex;
    justify-content: space-between;
    padding: 5px;
    visibility: hidden;
}

#board > *{
    color: white;
}

canvas{
    border: solid 1px white;
}
.misc {
    position: relative;
    font-family:'Courier New', Courier, monospace;
    margin: 10px;
}
.misc > a {
    position: absolute;
}
.misc > p {
    color: white;
    background-color: #000000a9;
    border-radius: 5px 0px 0px 0px;
    text-align: center;
    margin: auto;
    font-size: 13px;
    font-family: 'Courier New', Courier, monospace;
    position: fixed;
    bottom: 0px;
    right: 0px;
    padding: 10px;
}
.misc > a > button {
    position: fixed;
	top: 0px;
	left: 0px;
	margin: 5px;
    background: rgba(255, 255, 255, 0.911);
    font-size: 15px;
    font-weight: bold;
    font-family: 'Courier New', Courier, monospace;
    /* button can't be highlighted */
    -webkit-touch-callout: none; 
    -webkit-user-select: none; 
    -khtml-user-select: none; 
    -moz-user-select: none; 
    -ms-user-select: none; 
    user-select: none;
}