/* © Anton Kalyuta 2022 - 2026 */
#updatedText {
    font-size: 20px;
    border: 5px solid #e6e9ee;
    border-radius: 5px;
    text-align: left;
    padding: 25px 50px;
    width: 84vw;
    max-width: 84vw;
    /*overflow: auto;*/
    user-select: none;
    font-family: monospace;
    color: #151f33;
    resize: none;
    display: flex;
    justify-content: space-evenly;
    background: white;
}

#updatedText.shiningLetters {
    background: linear-gradient(to right, red, orange, yellow, green, blue, indigo, violet) 0 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shining linear 2.5s infinite;
}

@keyframes shining {
    100% {
        background-position-x: calc(84vw + 100px);
    }
}

#updatedText .textBlock {
    min-width: max-content;
    white-space: nowrap;
}

#previewText {
    background: #cf517afa;
}

@media (max-device-width: 480px) {
    #text {
        min-height: 45vw;
    }
}
