
/* Reset */
body, h1, h2, p, ul, li {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: white;
    background-color: black;
}

/* Header */
header {
    background-color: black;
    color: white;
    text-align: center;
    padding: 20px 0;
}

header .logo {
    max-width: 200px;
    margin-bottom: 15px;
}

header h1 {
    font-size: 2.5rem;
}

header p {
    font-size: 1.2rem;
}

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

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

nav ul li {
    margin: 0 15px;
}

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

nav ul li a:hover {
    text-decoration: underline;
}

/* Sections */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

h2 {
    color: white;
    margin-bottom: 10px;
}

ul {
    list-style: disc inside;
    margin-top: 10px;
    color: white;
}

/* Footer */
footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}
