@font-face {
    font-family: "font";
    src: url("Inconsolata-VariableFont_wdth,wght.ttf");
}

body {
    background-color: black;
    color: rgb(255, 255, 255);
    font-family: Monospace;
    font-size: 20px;
    margin: 0px;
    padding: 0px;
    font-family: font;
    font-weight: 300;
}

a {
    text-decoration: none;
    color: rgb(255, 153, 0);
}

::selection {
    background-color: grey;
    color: black;
}


.scrolldiv {
    overflow-y: auto;
    scrollbar-color: white transparent;
}

.flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.lowpriority {
    color: grey;
}

.heading {
    font-weight: 1000;
}

#infodivparent {
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    height: 90vh;
    flex-wrap: wrap;
}

#infodiv {
    width: 40vw;
    max-height: 70vh;
    display: flex;
    flex-direction: column;
    border: white dashed 1px;
    background-color: black;
    padding: 25px;
    box-shadow: 0px 0px 50px black;
}

#audiocontrolsdiv {
    position: fixed;
    left: 0;
    bottom: 5vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#audiodiv {
    width: 50%;
    margin: 10px;
    height: 60px;
}

audio {
    width: 100%;
    height: 100%;
}

.button {
    color: white;
    font-family: font;
    font-weight: 300;
    font-size: 20px;
    margin: 25px;
    padding: 10px;
    border-radius: 50%;
    text-shadow: 0px 0px 5px black;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    align-content: center;
}
.button:hover {
    cursor: pointer;
    transition: 0.2s;
    transform: scale(1.2);
}
.button:active {
    transition: 0.05s;
    transform: scale(0.9);
}

.break {
    flex-basis: 100%;
    height: 0;
}

.canvas {
    display: block;
    top: 0;
    left: 0;
    position: fixed;
    z-index: -100;
}
canvas {
    width: 100vw;
    height: 100vh;
}

#indexpage {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    flex-direction: column;
}

.shadow {
    filter: drop-shadow(0px 0px 10px black);
}

.titleblurb {
    width: 30vw;
    text-align: center;
    text-shadow: 0px 0px 5px black;
}

.linkslist {
    display: flex;
    justify-content: space-around;

}

#artinfodivparent {
    position: absolute;
    top: 50vh;
    left: 70vw;
    translate: -50% -50%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

#artinfodivparent2 {
    display: flex;
}

#artinfodiv {
    max-width: 30vw;
    max-height: 50vh;
    display: flex;
    flex-direction: column;
    border: white dashed 1px;
    background-color: black;
    padding: 25px;
    box-shadow: 0px 0px 50px black;
}

.art {
    width: 100%;
    max-width: 30vw;
    max-height: 60vh;
    position: absolute;
    top: 50vh;
    left: 30vw;
    translate: -50% -50%;
    filter: drop-shadow(0px 0px 30px black);
    image-rendering: -moz-crisp-edges;
    image-rendering: -webkit-crisp-edges;
    image-rendering: pixelated;
}

img {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}