html {
    font-size: 10px;
    background-color: #222;
    color: #f8f8ff;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
}

#canvas {
	border: solid 2px #f8f8ff;
	width: 800px;
	height: 800px;
	display: block;
	margin: 0 auto;
}

h1, h2 {
	font-size: 2rem;
    font-family: "Jost", sans-serif;
    font-weight: 600;
    margin: 2rem;
    position: absolute;
}

h2 {
    z-index: 101;
    top: 0;
    left: 0;
}

h2:hover, #background:hover {
    cursor: pointer;
}

h1 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    font-size: 5rem;
}

#background {
    background-color: rgba(0,0,0,0.5);
    height: 100vh;
    width: 100vw;
    position:absolute;
    top: 0;
    left: 0;
    z-index: 99;
}

a, a:link, a:visited, a:focus, a:hover, a:active {
    color: #f8f8ff;
    text-decoration: none;
}