@font-face {
    font-family: PressStart2P;
    src: url("/assets/fonts/PressStart2P.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%;
}

#bottomStrip {
    background-color: black;
    position: absolute;
    top: 95%;
    left: 0%;
    width: 100%;
    height: 5%;
}

#glcanvas {
    width: 100%;
    height: 100%;
}

.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;
}

#askLabel {
    color: white;
    text-align: center;
    font-size: 200%;
    flex-shrink: 1;
}

#audioAskBox {
    background-color: black;
    position: absolute;
    z-index: 10;
    width: 50%;
    height: 30%;
    top: 0;
    left: 0;
    transform: translateX(50%) translateY(90%);
    border: 8px solid white;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.yesOrNoButton {
    margin-top: 1vh;
    margin-bottom: 1vh;
    margin-left: 1vw;
    margin-right: 1vw;
    font-size: 5vh;
    flex-shrink: 5;
}

#links {
    width: 100%;
}

.buttonOverCanvas {
    position: absolute;
    font-size: x-large;
    z-index: 1000;
}