#evening-section {
    background: slateblue;
    transition: background-color 0.5s ease; 
    margin-bottom: 5px;
}

#evening-section .label {
    color: #800000; 
    text-shadow: 2px 2px 2px #ffd5e5;
    font-size: 1.5rem; 
}

#evening-section .evening-text {
    font-size: 2rem; 
    color: fuchsia; 
}

#evening-section .evening-text span {
    -webkit-text-stroke-color: #800000; 
}

#evening-section textarea {
    background: #444;
    color: #fff;
    font-size: 1rem; 
    padding: 10px; 
    margin-top: 10px; 
}

.evening-output span {
    animation: sunset 2s infinite;
    display: inline-block;
    color: pink; 
}


@media (max-width: 768px) {
    #evening-section .label, #evening-section .evening-text {
        text-align: center; 
        margin-right: 0; 
    }

    #evening-section .textarea-container {
        width: 100%; 
    }

    #evening-section .evening-text {
        font-size: 1.5rem; 
    }
}

@keyframes sunset {
    0% { 
        color: #800000; 
        text-shadow: 0 0 2px #800000, 0 0 5px #800000, 0 0 10px #800000, 0 0 15px #800000; 
    }
    100% { 
        color: #fff; 
        text-shadow: 0 0 2px #fff, 0 0 10px #fff, 0 0 20px #800000, 0 0 30px #800000, 0 0 40px #800000; 
    }
}
