/* Very simple styling for the blog website */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #fcfcfc;
    color: #333;
}

header, main, footer {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #333;
}

header h1 {
    margin: 0;
    font-size: 24px;
}

nav a {
    color: #0066cc;
    text-decoration: none;
    font-weight: bold;
}

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

h2 {
    color: #111;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.intro {
    margin-bottom: 30px;
}

ul {
    list-style-type: square;
    padding-left: 20px;
}

li {
    margin-bottom: 10px;
}

a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    font-size: 14px;
    color: #666;
    border: none;
}
