body, HTML {
    margin: 0;
    padding: 0;
    height: 100%;
    scrollbar-width: thin;
}

* {
    font-family: "Times New Roman", Times, serif;
}

header, footer {
    position:fixed;
    width: 100%;
    background-color: black;
    margin: 0;
    left: 0;
    z-index: 999;
}

header {
    height: min(10%,100px);
    top: 0;
}

footer {
    height: calc(min(10%,100px) + 500px);
    bottom: -500px;
}

.borderspacer {
    height: 100px;
    width: 100px;
    position: relative;
}

.songs {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
    justify-content: center;
    column-gap: 100px;
}

@media screen and (width < 1140px) and (width>=880px){
    .songs {
        column-gap: 60px !important;
    }
}

.break {
    display:none;
}

@media screen and (width < 880px) and (width>=480px){
    /* .songs {
        flex-direction: column !important;
    } */
    .songs {
        flex-wrap: wrap;
    }
    .break {
        flex-basis: 100%;
        height: 0;
        display: block;
    }
}

@media screen and (width < 480px){
    .songs {
        flex-direction: column !important;
    }
}

.song {
    position:relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px;
    height: 150px;
}

.song *{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

.label {
    margin: 0;
    transform: translate(-50%,50px) scale(1.5,1) !important;
    font-size: 20px;
    white-space: nowrap;
}
.label:hover{
    cursor: pointer;
}

/* https://stackoverflow.com/questions/14068103/disable-antialising-when-scaling-images */
img, canvas { 
    image-rendering: optimizeSpeed;             /* STOP SMOOTHING, GIVE ME SPEED  */
    image-rendering: -moz-crisp-edges;          /* Firefox                        */
    image-rendering: -o-crisp-edges;            /* Opera                          */
    image-rendering: -webkit-optimize-contrast; /* Chrome (and eventually Safari) */
    image-rendering: pixelated;                 /* Universal support since 2021   */
    image-rendering: optimize-contrast;         /* CSS3 Proposed                  */
    -ms-interpolation-mode: nearest-neighbor;   /* IE8+                           */
}

#back-canvas{
    position: fixed;
    top:-25vh;
    top:-25lvh;
    left:-25vw;
    left:-25lvw;
    margin:0;
    padding:0;
    width: 150vw;
    width: 150lvw;
    height: 150vh;
    height: 150lvh;
    background-image: url("/images/start bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}