body {
    margin: 0;
    padding: 0;
    background-image: url('background.png');
    background-repeat:repeat;
}

#text-container {
    position: absolute;
    top: 0;
    left: 0;
    font-family: 'Space Mono', monospace;
    font-weight: bold;
    color: black;
    padding: 20px;
    white-space: nowrap;
    writing-mode: vertical-lr;
    z-index: 2;
    -webkit-filter: drop-shadow(0px 0px 60px rgba(100, 80, 70, 0.4));
    filter: drop-shadow(0px 0px 60px rgba(100, 80, 70, 0.4));
}

#sepia {
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 2;
}

#blur {
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 1;
    backdrop-filter: blur(1px);
}

#title {
    color: rgba(100, 50, 150, 0.5);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(500px) translateY(-50%) rotate(-90deg) ;
    font-size:120px;
    filter: drop-shadow(0px 0px 60px rgba(38, 0, 255, 0.8));
}

p {
    padding: 0px 0px 0px 0px;
    white-space: nowrap;
    overflow:hidden;
}