/* General styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: white;
    color: grey;
}

/* Header and navigation styles */
header {
    background-color: black;
    padding: 2px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 150px;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Main content styles */
main {
    padding: 10px;
}
