/* styles.css */

/* Reset some default styles */
body, h1, h2, p, button {
    margin: 0;
    padding: 0;
}

/* Set a background color for the entire page */
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
}

/* Header styles */
.header {
    background-color: #333;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    text-decoration: none;
    color: #fff;
}

.nav-items a {
    margin-right: 20px;
    text-decoration: none;
    color: #fff;
}

/* Main content styles */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
}

.intro {
    text-align: center;
    margin-bottom: 40px;
}

.intro h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.intro p {
    font-size: 16px;
    color: #777;
}

button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

/* Achievements section styles */
.achievements {
    display: flex;
    justify-content: space-around;
    margin-bottom: 40px;
}

.work {
    text-align: center;
}

.work-heading {
    font-size: 18px;
    margin-top: 10px;
}

.work-text {
    font-size: 14px;
    color: #777;
}

/* About section styles */
.about-me {
    text-align: center;
    margin-bottom: 40px;
}

.about-me h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

/* Footer styles */
.footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.copy {
    font-size: 14px;
}

.bottom-links {
    margin-top: 10px;
}

.bottom-links a {
    margin-right: 10px;
    text-decoration: none;
    color: #fff;
}
