body {
    margin: 0;
    overflow: hidden;
    background-color: #000;
    font-family: sans-serif;
    color: white;
}

#container {
    width: 100vw;
    height: 100vh;
}

#liquid-canvas {
    display: block;
    width: 100%;
    height: 100%;
}

#audio-player {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 500px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

#audio-player:hover {
    opacity: 1;
}

.logo {
    position: absolute;
    top: 20px;
    left: 20px;
    color: black;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: bold;
    font-size: 6em;
    user-select: none;
    /* border: 3px solid white; */
    padding: 2px 8px;
    filter: invert(1);
    mix-blend-mode: difference;
}
.center-text {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 10000;
    transform: translate(-50%, -50%);
    color: black;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: bold;
    font-size: 4em;
    user-select: none;
    text-align: center;
    opacity: 1;
    transition: opacity 0.5s 
ease-in-out;
    filter: invert(1);
    mix-blend-mode: difference;
    width: 100%;
    padding: 10px;
}
.corologo {
    width: 60vmin;
    height: 60px;
    position: absolute;
    right: 20px;
    bottom: 14vmin;
    filter: invert(1);
    mix-blend-mode: difference;
}

#runeCanvas {
    position: absolute;
    max-width: 190vmin;
    width: 100vmin;
    height: 100vmin;
    max-height: 190vmin;
    display: block;
    filter: contrast(1.5);
    bottom: calc(50% - 50vmin);
    right: calc(50% - 50vmin);
    mix-blend-mode: difference;
    z-index: 1000000;
}
@font-face {
  font-family: norse;
  src: url('./fonts/Norse.otf');
}
.centerCanvas {
    position: absolute;
    display: block;
    max-width: 120vmin;
    max-height: 120vmin;
    filter: contrast(1.5);
    bottom: calc(50% - 40vmin);
    right: calc(50% - 40vmin);
    mix-blend-mode: difference;
    font-family: norse;
}
@media screen and (max-width: 800px) {
    .logo {
        left: 5px;
        font-size: 4em;
    }
}