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

#dawn-section .label {
    color: #ffa07a;
    text-shadow: 2px 2px 2px #fafad2; 
    font-size: 1.5rem;
}

#dawn-section textarea {
    background: #555; 
    color: #fff;
    font-size: 1rem;
    padding: 10px;
    margin-top: 10px;
    border: none; 
}

#dawn-section .dawn-text,
#dawn-section .dawn-text span {
    font-size: 2rem; 
    color: #800080; 
    -webkit-text-stroke-color: #800080; 
}

.dawn-output span {
    animation: dawnGlow 2s infinite;
    display: inline-block;
    color: #FDB813; 
}


@media (max-width: 768px) {
    #dawn-section .label, #dawn-section .dawn-text {
        text-align: center;
        margin-right: 0;
    }
    #dawn-section .textarea-container {
        width: 100%;
    }
    #dawn-section .dawn-text {
        font-size: 1.5rem;
    }
}

@keyframes dawnGlow {
    0%, 100% { 
        color: #800080; 
        text-shadow: 0 0 5px #800080, 0 0 10px #800080, 0 0 15px #800080;
    }
    50% { 
        color: #ff00ff; 
        text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 30px #ff00ff;
    }
}
