/* Reset default margin and padding */
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.navbar {
    background-color: #333;
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.navbar li {
    padding: 14px 20px;
}

.navbar a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    display: block;
    transition: background-color 0.3s;
}

.navbar a:hover {
    background-color: #575757;
}

.about-section {
    max-width: 800px;
    margin: 100px auto 0;
    padding: 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.about-section h1 {
    text-align: center;
    color: #444;
}

.about-section ul {
    list-style-type: disc;
    margin: 20px 0;
    padding-left: 40px;
}

.about-section li {
    margin-bottom: 10px;
}

.projects-section {
    max-width: 800px;
    margin: 100px auto 0;
    padding: 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.projects-section h1 {
    text-align: center;
    color: #444;
}

.project {
    margin-bottom: 30px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.project h2 {
    margin-top: 0;
    color: #333;
}

.project a {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
}

.project a:hover {
    text-decoration: underline;
}

.welcome-section {
    text-align: center;
    margin: 150px auto 0;
    padding: 20px;
    font-family: Arial, sans-serif;
    color: #333;
}

.welcome-section h1 {
    font-size: 2.5em;
    color: #444;
}

.welcome-section p {
    font-size: 1.2em;
    margin-top: 10px;
    line-height: 1.6;
}

.contact-section {
    max-width: 800px;
    margin: 150px auto 0;
    padding: 20px;
    font-family: Arial, sans-serif;
    text-align: center;
    color: #333;
}

.contact-section h1 {
    font-size: 2.5em;
    color: #444;
}

.contact-section p {
    font-size: 1.2em;
    margin: 20px 0;
    line-height: 1.6;
}

.github-link {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 1.2em;
    color: white;
    background-color: #333;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.github-link:hover {
    background-color: #575757;
}