body {
    color: linen;
    background: #1F1C72;
    overflow-x: hidden;
    min-height: 101vh;
    background: url('../img/space-background.jpg');
}

.outer-nav {
    margin-bottom: 20px;
}


.text {
    color: linen;
    text-transform: uppercase;
    font-size: 70px;
    text-align: center;
    letter-spacing: 14px;
}

.text::before,
.text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.text::before {
    color: #ff00c1;
    animation: glitch-effect 3s infinite;
}

.text::after {
    color: #3498db;
    animation: glitch-effect 2s infinite;
}


.modal {
    display: none;
    position: fixed;
    left: 20%;
    top: 0;
    width: 60%; 
    height: 100%;
    z-index: 1;
    padding-top: 0px;
    overflow: auto;

}
.modal-content {
    font-family: 'Do Hyeon', sans-serif;
    color: white;
    background-color: black;
    margin: auto;
    padding: 35px;
    padding-left:100;
    border: 1px solid #888;
    width: 70%;
}
#scroll-text {
    padding-left:70%;
    
}


@keyframes glitch-effect {
    0% {
        left: -2.5px;
        top: -2.5px;
    }

    25% {
        left: 2.5px;
        top: 0px;
    }

    50% {
        left: -2px;
        top: 2.5px;
    }

    75% {
        left: 2.5px;
        top: -2.5px;
    }

    100% {
        left: 0px;
        top: -2.5px;
    }
}

b {
    font-size: 17.6px;

}


img {
    max-height: 400px;
    max-width: 200px;
}

#generated-image {
    display: block;
    max-width: 100%;
    height: auto;
    display: none;
}

canvas {
    max-height: 450px;
    max-width: 400px;
    color: red;
}

.reduce-div-width {
    display: flex;
    justify-content: center;
    width: 70%;
}

.footer {
    background-color: #ff00c1;
    color: linen;
    font-size: 20px;
    font-weight: 700;
    font-family: sans-serif;
    width: 100%;
    padding: 16px;
    /* position: fixed; */
    bottom: 0;
    /* left: 50%; */
    /* transform: translateX(-50%); */
    text-align: center;
    z-index: 2;
}


/* class is needed to render busy cursos during ajax calls */
body.wait *, body.wait
{
    /* important to overwrite any other potential cursos manipulations*/
    cursor: wait !important;
}