body {  
    background: #F5F3FF; 
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif; 
    margin: 0;
    padding: 0;
    text-align: center; 
    line-height: 1.6;
}


nav ul {
    list-style: none; 
    padding: 12px;
    background: #9370DB; 
    margin: 0 auto; 
    display: flex; 
    justify-content: center; 
    border-bottom: 2px solid #6A5ACD; 
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 6px 12px;
    border-radius: 6px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

nav ul li a:hover {
    background: #E6E0F8; 
    color: #4B0082; 
}


h1 {
    color: #6A5ACD;
    font-size: 2.5em;
    text-align: center;
    margin: 20px 0;
}

h2 {
    color: #6A5ACD;
    margin: 15px 0;
    text-align: center;
}


.content {
    background-color: white; 
    max-width: 800px;
    margin: 20px auto;
    padding: 25px;
    text-align: left; 
    border: 2px solid #9370DB;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.content p {
    margin-bottom: 16px;
    font-size: 1em;
}


footer {
    background-color: #9370DB; 
    color: white; 
    text-align: center;
    padding: 14px 0; 
    font-size: 0.95em; 
    border-top: 2px solid #6A5ACD; 
    margin-top: auto;
}
