/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    color: #333;
}

a {
    text-decoration: none;
    color: #ff6b6b;
}

/* Header Styles */
header {
    background-color: #ff9f43;
    color: white;
    padding: 10px 0;
    text-align: center;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

/* Section Styles */
section {
    padding: 20px;
    margin: 20px;
    background-color: #ffcccb;
    border-radius: 10px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
}

.welcome-section {
    background-color: #ffb6c1;
}

.about-section {
    background-color: #ff7f50;
}

.poems-section {
    background-color: #ff6347;
}

.contact-section {
    background-color: #ff4500;
}

/* Footer Styles */
footer {
    background-color: #ff6347;
    color: white;
    text-align: center;
    padding: 10px 0;
}

/* Animation and Lighting Effects */
section {
    transition: all 0.3s ease;
}

section:hover {
    transform: scale(1.03);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, #ff6b6b 0%, transparent 70%);
    mix-blend-mode:overlay;
    z-index: -1;
}

h1, h2 {
    color: #ff7e5f;
}

ul {
    list-style-type: none;
}

ul li {
    margin-bottom: 10px;
}

a {
    color: #ff7e5f;
    text-decoration: none;
}

footer {
    background-color: #ff7e5f;
    color: white;
    text-align: center;
    padding: 10px 0;
}

/* Animation for Lighting Effect */
section::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #ff7e5f, #ffcccb, #ff7e5f);
    z-index: -1;
    border-radius: 10px;
    animation: lighting 2s linear infinite;
}

@keyframes lighting {
    0% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.2);
    }
    100% {
        filter: brightness(1);
    }
}

/* Additional Styles for Improved Text Clarity */
body {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

section {
    color: #333;
}

h1, h2{
    text-shadow: 1px 1px 2px rgba(0, 50, 10000, 1000000000000000);
    font-weight:bolder;
    font-family:'Times New Roman', Times, serif;
    font-size: xx-large;
}

ul li{
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0,1);
}

a {
    text-shadow: 1px 1px 2px rgba(0, 100, 100);
    font-weight: bold;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: large;
}
