/* General styling */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background: url('https://logincdn.msftauth.net/shared/5/images/2_bc3d32a696895f78c19d.svg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    flex-direction: column;
    height: 100vh;
    color: black; /* Text color for better contrast */
}

/* Header styling */
header {
    background-color: rgba(30, 117, 188, 0.9); /* Slightly transparent to blend with background */
    padding: 0 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: #005ea6;
}

/* Main content styling */
main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    text-align: center;
    padding: 20px;
}

.about {
    max-width: 800px;
    background: rgba(255, 255, 255, 0.8); /* Background for better readability */
    padding: 20px;
    border-radius: 10px;
    color: black; /* Ensure text is black for contrast */
}

.about h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about p {
    font-size: 18px;
    margin-bottom: 20px;
}
