html, body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    cursor: none;
    overflow: hidden;
    height: 100vh;
    margin: 0;
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: lighten;
}

div.pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #d4d4d4;
    background-image: url(img/pattern-mask.svg);
    background-position: center;
    background-size: 200px auto;
}

section.scratched-out {
    mix-blend-mode: darken;
}
div.intro {
    background-color: #475DA7;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
div.intro h1 {
    font-size: 66px;
    line-height: normal;
    color: #ffffff;
    text-align: center;
    margin-top: 20%;
    margin-bottom: 2rem;
}
div.intro p {
    font-size: 46px;
    line-height: normal;
    color: #ffffff;
    text-align: center;
    width: 40%;
    margin: 0 auto;
}

div.cursor {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background-color: #1E1F41;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.25s, height 0.25s;
}

div.cursor.is-down {
    width: 80px;
    height: 80px;
}
