@font-face {
    font-family: PressStart2P;
    src: url("/assets/fonts/PressStart2P.ttf");
}

@font-face {
    font-family: C64-Font;
    src: url("./Commodore-64-v6.3.TTF");
}

*, *::before, *::after {
    box-sizing: border-box;
    overflow: hidden;
}

#topStrip {
    background-color: black;
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 5%;
    display: flex;
    justify-content: space-between;
}

#canvasArea {
    position: absolute;
    top: 5%;
    left: 0%;
    width: 100%;
    height: 90%;
    background: url("./wood.png");
    background-size: 100% 100%;
}

#glcanvas {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: calc(384pt * 2);
    height: calc(272pt * 2);
    border: 4px solid black;
    border-radius: 10%;
}

#bottomStrip {
    background-color: black;
    position: absolute;
    top: 95%;
    left: 0%;
    width: 100%;
    height: 5%;
}

.pixelFont {
    font-size: 4vh;
    margin: 0.2vh;
    color: white;
    font-family: PressStart2P;
}

p.pixelFont.link {
    font-size: 3vh;
    margin: 0.2vh;
    font-family: PressStart2P;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

#url {
    font-size: 3vh;
    margin: 1vh;
    color: green;
}

#credit {
    text-align: center;
}

#links {
    width: 100%;
    background: rgba(255, 255, 255, 0.50);
}

#programCode {
    font-size: 3vh;
    margin: 0.2vh;
    font-family: C64-Font;
    text-align: center;
    position: absolute;
    top: 9vh;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    z-index: 10;
    color: white;
    overflow: hidden;
}