/* Global Styles */
body {
    font-family: 'YourSerifFont', serif;
    margin: 0;
    padding: 0;
    color: #333;
}

a {
    text-decoration: none;
    color: #007BFF;
}

    a:hover {
        text-decoration: underline;
    }

/* Header and Navigation */
header {
    background-color: #f8f9fa;
    padding: 10px 0;
}

nav ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}

    nav ul li {
        display: inline;
    }

        nav ul li a {
            font-weight: bold;
        }

/* Main Content */
main {
    padding: 20px;
}

.intro, .about, .projects, .blog, .contact {
    max-width: 800px;
    margin: 0 auto;
}

    .intro h1, .about h1, .projects h1, .blog h1, .contact h1 {
        font-size: 2em;
        margin-bottom: 20px;
    }

/* Buttons */
.button {
    display: inline-block;
    background-color: #007BFF;
    color: #fff;
    padding: 10px 20px;
    margin-top: 10px;
}

    .button:hover {
        background-color: #0056b3;
    }

/* Footer */
footer {
    background-color: #f8f9fa;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}

/* Responsive Design */
@media (max-width: 600px) {
    nav ul {
        flex-direction: column;
    }
}
