body {
    background-color: #fff;
    color: #000;
    font-family: sans-serif;
    padding: 0;
    font-size: 2em;
}

#txt {
    position: fixed;
    z-index: 200;
    right: 10px;
    bottom: 10px;
    border: 1px solid;
    padding: 4px;
    font-size: 0.8em;
}
    #txt a {
        text-decoration: none;
        color: #333;
        font-size: .8em;
    }

#info {
    z-index: 100;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    margin: 0 3em 1em 3em;
    text-align: center;
    line-height: 1.4em;
}

p, ol, ul {
    margin: 0 3em 1em 3em;
    line-height: 1.4em;
}

li {
    margin: 0 2em 1em 2em;
    line-height: 1.4em;
}

section {
    display: grid;
    place-items: center;
    align-content: center;
    min-height: 98vh;
    min-width: 98vw;
    margin: 0;
    padding: 1px;
}

.hidden {
    opacity: 0;
    filter: blur(5px);
    transform: scale(.4);
    /*transform: translateX(-100%);*/
    transition: all 1s;
    transition-delay: 300ms;
}

@media(prefers-reduced-motion) {
    .hidden {
        transition: none;
    }
}

.show {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
    /*transform: translateX(0);*/
    transition-delay: 300ms;
}

li:nth-child(1) {
    transition-delay:200ms;
}
li:nth-child(2) {
    transition-delay:400ms;
}
li:nth-child(3) {
    transition-delay:600ms;
}
li:nth-child(4) {
    transition-delay:800ms;
}

#pg1 {
    background-image: url(img/usFlag.jpg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
}

#pg2 {
    background-image: url(img/skull.svg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: contain;
    /*background-size: 30vw 50vh;*/
}

#pg3 {
    background: url(img/wak.svg), #6DB3F2;
    background-repeat: no-repeat;
    background-size: contain;
}

#container {
    z-index: 10;
    width: 100vw;
    height: 100vh;
}
canvas {
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid white;
}