* {
    padding: 0%;
    margin: 0%;
    box-sizing: border-box;
}

html, body, #textContainer {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    position: relative;
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%0A%20%20%3Cdefs%3E%0A%20%20%20%20%3Cfilter%20id%3D%22filter-uod220nca%22%3E%0A%20%20%20%20%20%20%3CfeTurbulence%20baseFrequency%3D%220.00623%22%20numOctaves%3D%2210%22%20seed%3D%224800%22%2F%3E%0A%20%20%20%20%20%20%3CfeColorMatrix%20class%3D%22anim%22%20type%3D%22hueRotate%22%20values%3D%220%22%3E%0A%20%20%20%20%20%20%20%20%3Canimate%20attributeName%3D%22values%22%20from%3D%220%22%20to%3D%22360%22%20dur%3D%226s%22%20repeatCount%3D%22indefinite%22%2F%3E%0A%20%20%20%20%20%20%3C%2FfeColorMatrix%3E%0A%20%20%20%20%20%20%3CfeColorMatrix%20values%3D%221.7%201.4%200.3%20-2.9%202.7%203.1%20-0.5%20-2.6%204%201.9%20-4.2%20-1.8%203.9%20-3.7%20-4.2%20-3.2%20-4.3%203.2%20-2.6%201.8%22%2F%3E%0A%20%20%20%20%20%20%3CfeDiffuseLighting%20lighting-color%3D%22rgb%28100%2C0%2C0%29%22%20surfaceScale%3D%2240%22%3E%0A%20%20%20%20%20%20%20%20%3CfeDistantLight%20azimuth%3D%2240%22%20elevation%3D%221650%22%2F%3E%0A%20%20%20%20%20%20%3C%2FfeDiffuseLighting%3E%0A%20%20%20%20%3C%2Ffilter%3E%0A%20%20%3C%2Fdefs%3E%0A%20%20%3Crect%20width%3D%22100%25%22%20height%3D%22100%25%22%20filter%3D%22url%28%23filter-uod220nca%29%22%2F%3E%0A%3C%2Fsvg%3E");
}


#overlay {
    width: 350px;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    mix-blend-mode: color-dodge;
    opacity: 0;
}

#textContainer {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

#text {
    color:crimson;
    text-shadow: 0px 0px 20px red;
    font-family: 'Courier Prime', monospace;
    font-size: 1rem;
    text-align: left;
    padding-left: 1rem;
    padding-right: 2rem;
    padding-top: 1rem;
    opacity: 0;
    transition: all 500ms ease-in-out;
    width: 50vw;
}

.textVisible {
    opacity: 1 !important;
}

body {
    background-color: #080808;
}

@media only screen and (max-width: 600px) {
    #text {
      width: 100%;
      text-align: center;
      padding-bottom: 2.5rem;
      padding-top: 1.5rem;
    }

    html, body, #textContainer {
        overflow: auto;
    }
  }