body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8; /* Light background for the entire page */
}

header {
    background-color: #6a1b9a; /* Vibrant purple header */
    color: #ffffff;
    text-align: center;
    padding: 1em 0;
}
nav
{
   background-color: #6a1b9a; /* Vibrant purple header */
    padding: 10px 0;
    text-align: center; 
}

 nav ul {
    
    list-style: none;
    padding: 0;
}

 nav ul li {
    display: inline;
    margin: 0 15px;
}

 nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

main {
    margin: 20px;
    background-color: #ffffff; /* White background for the main content */
    padding: 20px;
    border-radius: 8px; /* Rounded corners for the main content area */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

article {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eeeeee; /* Separator for articles */
}

article h2 {
    color: #333333; /* Dark text for titles */
    margin-bottom: 10px;
}

article p {
    color: #666666; /* Lighter text for the body */
    line-height: 1.6; /* Improved readability */
}

footer {
    background-color: #6a1b9a; /* Matching the header's vibrant purple */
    color: #ffffff;
    text-align: center;
    padding: 1em 0;
}
.container {
            width: 400px;
            margin: 50px auto;
            background-color: #ffffff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }
        h2 {
            text-align: center;
        }
        label {
            font-weight: bold;
            display: block;
            margin-top: 10px;
        }
        input, select {
            width: 100%;
            padding: 8px;
            margin-top: 5px;
        }
        button {
            width: 100%;
            margin-top: 15px;
            padding: 10px;
            background-color: #2e86c1;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }
        button:hover {
            background-color: #1b4f72;
        }
        .profile-container {
            width: 700px; /* bigger container */
            margin: 50px auto;
            background-color: #ffffff;
            padding: 30px; /* more padding */
            border-radius: 12px;
            box-shadow: 0 0 15px rgba(0,0,0,0.15);
            text-align: center;
        }

        .profile-container h2 {
            font-size: 32px; /* bigger heading */
            margin-bottom: 25px;
        }

        .profile-container img {
            width: 200px; /* bigger image */
            height: auto;
            border-radius: 12px;
            margin-bottom: 20px;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 20px; /* bigger text */
        }

        td {
            padding: 12px;
            text-align: left;
        }

        td:first-child {
            font-weight: bold;
            width: 40%;
        }