*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html{
    background: url(/images/clouds.gif);
    background-size: cover;
}
body{
    font-family: 'Lexend Deca', sans-serif;
    font-size: min(50vh,20vw);
    color: #111;
    font-weight: 900;

    text-transform: uppercase;
    
    overflow: hidden auto;
    min-height: 100vh;
    opacity: 0;
    transition: 1s ease opacity;
}
body.loaded{
    opacity: 1;
}

main{
    color: #222222aa;
    display: flex;
    flex-direction: column;
    letter-spacing: -.2em;
    justify-content: space-between;
    padding: 0em 0.06em;
    min-height: 99vh;
}
main > section:first-child {
    margin-top: 0.15em;
}
main > section {
    margin-bottom: 0.3em;
}
.rot main{
    flex-direction: row;
}
.rot section {
    transform: rotate(90deg);
    transform-origin: top left;
    width: 1em;
}
.rot section.alt{
    width: 2em;
}

section > span{
    line-height: 0.7em;
    display: block;
    mix-blend-mode: difference;
    transform: rotate(1deg);
}

section.whet > span {
    color: #fff;
    text-shadow: -0.05em 0.05em 0.1em #ffffff66;
}
section.punk > span{
    color: #111;
    text-shadow: -0.05em 0.05em 0.1em #11111166;
}
section.tint > span{
    color: #22bb22aa;
    text-shadow: -0.05em 0.05em 0.1em #22bb2266;
}
section.alt > span{
    color: #ff00ffaa;
    text-shadow: -0.05em 0.05em 0.1em #ff00ff66;
}