section {
    width: 75%;
    height: 50px;
    margin: auto;
    background-color: transparent;
    border-radius: 7px;
    overflow: hidden;

    display: flex;
    align-items: center;
}

h3 {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.1rem;
    font-style: italic;
    animation: defiler 16s linear infinite;
    padding-left: 100%;
    white-space: nowrap;
    color: white;
}

@keyframes defiler {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}