#afternoon-section {
    background: #87ceeb;
    transition: background-color 0.5s ease; 
    margin-bottom: 5px;
}

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

#afternoon-section .afternoon-text {
    font-size: 2rem; 
    color: #ff6347; 
}

#afternoon-section .afternoon-text span {
    -webkit-text-stroke-color: #ff6347;
}

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

.afternoon-output span {
    animation: afternoon 2s infinite;
    display: inline-block;
    color: #ff6347;
}


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

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

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

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