html, body { min-height: 100%; }
* { margin: 0; padding: 0; }

:root {
    --top-header-size: 100vh;
}

body {    
    -ms-overflow-style: none;
    scrollbar-width: none;

    font-family: Arial;
    padding: 0;
}

body::-webkit-scrollbar { 
    display: none;
}

.top {
    z-index: -1;
    
    position: fixed;
    left: 0;
    top: 0;

    height: var(--top-header-size);
    width: 100vw;
}

.top .blur {
    background-color: rgba(0, 0, 0, 0.4);
    overflow: auto;
    
    height: 100%;
    width: 100%;
}

.top .header {
    line-height: var(--top-header-size);
    font-family: Megrim;
    text-align: center;
    font-size: 15vw;
    padding: 0;
    margin: 0;

    text-shadow: rgb(61, 194, 255) 0 0 2vw;
    color: white;
}

.top canvas {
    z-index: -1;

    position: absolute;
    left: 0;
    top: 0;

    height: var(--top-header-size);
    width: 100%;

    padding: 0;
    margin: 0;
}

@media only screen and (max-width: 600px) {
    .top .header {
        margin-top: calc(var(--top-header-size) / 2);

        -ms-transform: translate(0%, -50%);
        transform: translate(0%, -50%);

        line-height: normal;
        word-spacing: 100vw;
    }
}