/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    background-color: #f9f9f9;
    color: #333;
}

/* Header Section */
header {
    background-color: #9DB9E4;
    color: black;
    text-align: center;
}

header h1 {
    font-size: 2em;
    text-align: left;
}

header p {
    font-size: 1em;
    text-align: right;
}

/* Navigation Bar */
nav {
    background-color: #444;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
}

nav ul li a:hover {
    background-color: #555;
    border-radius: 5px;
}