@import url('/fonts/winterlandbyjd.css');
@import url('/fonts/fingerpaint.css');

/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*, *::before, *::after {
    box-sizing: border-box;
}
* {
    margin: 0;
}
html, body {
    height: 100%;
}
body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}
input, button, textarea, select {
    font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

/* General declarations */
[hidden] {
    display: none !important;
}

body {
    font-family: 'Finger Paint', sans-serif;
overflow:hidden;
}

svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

svg .waves {
    /*filter: drop-shadow(2px 2px 2px black);*/
    /*filter: drop-shadow(30px 10px 4px #4444dd);*/
}

#texture {
    opacity: .8;
    mix-blend-mode: multiply;
}

.overlay {
    width: 100%;
    position: relative;
}

h1 {
    color: black;
    position: absolute;
    top: 1em;
    width: 100%;
    left: 0;
    text-align: center;
    /*font-family: sans-serif;*/
    color: black;
    z-index: 1000;
    font-size: 10vmin;
}

@media (min-aspect-ratio: 1/1.75) {
    body {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .overlay {
        width: 100%;
        height: 100vmin;
        position: relative;
    }
    h1 {
        color: white;
        top: 0;
    }
}
@media (min-aspect-ratio: 1/1) {
    h1 {
        position: absolute;
        top: 15%;
        left: 5vmin;
        z-index: 10000;
        text-align: left;
        font-size: 7vmin;
    }
}

@media (min-aspect-ratio: 1.5/1) {
    h1 {
        left: 10vmin;
    }
}