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

#morning-section .sunrise, #morning-section .label {
    font-size: 1.5rem; 
}

#morning-section .morning-text {
    font-size: 2rem; 
}

#morning-section textarea {
    font-size: 1rem; 
    padding: 10px; 
    margin-top: 10px; 
}


#morning-section {
    background: #FFDAB9; 
    transition: background-color 0.5s ease;
}

#morning-section .label {
    color: #007BA7; 
    text-shadow: 2px 2px 2px #ffd5e5; 
    font-size: 1.5rem;
}

#morning-section .morning-text {
    font-size: 2rem;
    color: #FFA07A; 
}

#morning-section .morning-text span {
    -webkit-text-stroke-color: #007BA7; 
}

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

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


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

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

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

#morning-section .sunrise {
    font-size: 10rem;
}

.morning-output span {
    animation: sunriseGlow 2s infinite;
    display: inline-block;
    color: #FFA07A; 
}


@media (max-width: 768px) {
    .header-row {
        flex-direction: column; 
        text-align: center; 
    }

    .sunrise, .label {
        margin-right: 0; 
    }

    .textarea-container {
        width: 100%; 
    }
}


@keyframes sunriseGlow {
    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; 
    }
}

.morning-output[contenteditable="true"] {
    min-height: 50px; 
    background-color: #fff; 
    padding: 8px; 
    border: 1px solid #ccc; 
    border-radius: 4px; 
}

.morning-output:empty:before {
    content: attr(data-placeholder);
    color: grey;
}

.morning-output:focus:before {
    content: none; 
}
