@import url("https://use.typekit.net/jmk3xov.css");
@font-face {
    font-family: font;
    src: url(Centauri.otf);
}
html, body {
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    height: 100%;
}

canvas {
    width: 100%;
    height: 100%;
    display: block;
    
    top: 0;
    left: 0;
}
img {
    width: 100%;
    height: auto;
}

:root {
    --dark-bg: rgba(15, 15, 15, 0.95);
    --spacing: 350px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 200;
    font-style: normal;
}


main {
    color: white;
    z-index: 99;
    position: absolute;
    width: 100%;
    margin: 0px auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
}

h1, h2, h3, blockquote {
    font-family: font;
    font-weight: 200;
    font-style: normal;
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
}

section {
    grid-column: 2 / 8;
    padding: 1rem;
    background: var(--dark-bg);
    font-size: 0.75rem;
    line-height: 1.5;
    margin-bottom: var(--spacing);
    overflow-wrap: break-word;
}

blockquote {
    margin: 0;
    padding: 0;
    grid-column: 2 / span 9;
    margin-bottom: var(--spacing);
}

    blockquote p {
        color: rgb(247, 236, 236);
        font-size: 4rem;
        display: inline;
        line-height: 1;
        word-spacing: 30px;
    }

.left {
    grid-column: 6 / 12;
}
.right {
    grid-column: 1 / 12;
    width: 40%;
}