body {
    background: linear-gradient(to right, #f0f0f0, #dcdcdc);
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
}
h1 {
    color: #4b0082;
    text-align: center;
    text-shadow: 2px 2px 5px #aaa;
}

p {
    font-size: 1.2em;
    line-height: 1.6;
    color: #333;
    padding: 0 20px;
}
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
    background-color: #4b0082;
}

nav li {
    margin: 0 15px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 10px;
    display: block;
}

nav a:hover {
    background-color: #6a0dad;
    border-radius: 5px;
}
section {
    background-color: white;
    margin: 20px auto;
    padding: 20px;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
h1 {
    animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
