
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 10; }
}

@keyframes animation {
    0% { 
        rotate: 0deg;
    }
    100% {
        rotate: 360deg; 
    }
}

body {
    background-color: black;
    overflow: hidden;
}

#background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: blur(1px) brightness(10%);
    overflow: hidden;
}

#background-text {
    position: relative;
    text-align: center;
    animation: fadeIn 4s linear;
    color: rgba(240, 248, 255, 0.5);
    font-size: 2em;
}

#background-text p {
    animation: animation 60s linear infinite;
    margin: 0;
    display: inline-block;
    left:50%;
    white-space: nowrap;
}

#container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#psyche-title-div {
    padding: 20px;
    padding-top: 100px;
    margin: auto;
    transform-origin: left center;
    top: 0;
    left: 0;
    position: relative;
    width: 56em;
    height: 15em;
    color: aliceblue;
    font-size: 1em;
    text-overflow: clip;
    overflow: hidden;
}

#psyche-title-div p {
    word-break: break-all;
    overflow-wrap: break-word;
    text-align: left;
    position: block;
    top: 0; left: 0;
    margin: 0;
    line-height: 1;
    writing-mode: vertical-lr;
    text-orientation: upright;
    justify-content: left;
    user-select: none;
}