.animated {
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
}

/* Non-solution styles */
.container-animate {
    display: flex;
    flex-wrap: wrap;
}

.animated {
    /*color: #ED7500;*/
    /*color: #ffffff;*/
    color: #e2782c;
    background-color: #ffffff;
    font-size: 2rem;
    font-family: sans-serif;
    /*border: 0.1rem solid rgba(0, 0, 0, 0.03);*/
    margin: 1rem;
}

.animated > * {
    box-sizing: border-box;
    padding: .5rem 1rem;
}

.animated {
    display: flex;
    height: 100%;
    background-color: #ffffff;
}

.word {
    margin: auto;
    color: #e2782c;
    font: italic bold 0.6em 'tahoma';
    text-shadow: 5px 2px #ffffff, 2px 4px #ffffff, 3px 5px #ffffff;
}
/* Add the cursor blinking effect */
.word::after {
    content: "|";
    animation: blink 0.7s infinite alternate;
    position: absolute;
    right: 0;
}
