@font-face {
    font-family: title;
    src: url(font/Cyberjunkies.otf);
}

body {
    background-color: rgb(22, 22, 22);
}

#menu-div {
    text-align: center;
    margin: auto;
    margin-top: 18%;
}

#menu-div > button {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
    width: 100px;
}

h1 {
    font-family: title;
    letter-spacing: 3px;
    margin-block-end: 0.2em;
}

#menu-div > h1 {
    text-shadow: -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white, 1px 1px 0 white;
    color: rgb(202, 0, 0);
    font-size: 8rem;
}

#menu-div > h1 > span:last-of-type {
    color: rgb(255, 30, 0);
}

#game-div {
    display: none;
    margin: auto;
    margin-top: 2vh;
    width: 95vw;
    height: 95vh;
    position: relative;
}

#levels-div {
    display: none;
    margin: auto;
    text-align: center;
    margin-top: 18%;
}

#levels-div > h1 {
    text-shadow: -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white, 1px 1px 0 white;
    color: rgb(37, 92, 117);
    font-size: 6rem;
}

.level-select {
    margin-bottom: 10px;
}

.level-select > button {
    font-size: 1.2rem;
}

#countdown-div {
    display: none;
    position: absolute;
    background-color: black;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 2.7rem;
    padding: 10px;
    right: 0px;
    top: 1px;
}

canvas {
    width: 100%;
    height: 100%;
    border: 1px solid white;
}

@keyframes tooltipFade {
    0% {
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}

@keyframes tooltipFadeBoth {
    0% {
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.tooltip {
    position: absolute;
    text-align: center;
    color: rgb(39, 101, 194);
    font-size: 3rem;
    width: 800px;
    height: 100px;
    left: 50%;
    top: 50%;
    margin-left: -400px;
    margin-top: -50px;
    font-family: title;
    pointer-events: none;
    letter-spacing: 3px;
}

.tooltip-sub {
    font-style: italic;
    font-family: 'Courier New', Courier, monospace;
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.tooltip-fade-in {
    animation: tooltipFade 3s linear 0s 1 normal forwards;
}

.tooltip-fade-out {
    animation: tooltipFade 3s linear 0s 1 reverse forwards;
}

.tooltip-fade-both {
    animation: tooltipFadeBoth 3s linear 0s 1 normal forwards;
}