/* Reset some default styles in browsers */
body, h1, h2, h3, p, ul {
    margin: 0;
    padding: 0;
}

/* Apply a background color to the body */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

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

header h1 {
    font-size: 30px;
    margin-right: 20px;
}

header p {
    font-size: 18px;
}

/* Navigation */
nav ul {
    list-style: none;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
}

nav ul li a:hover {
    border-bottom: 2px solid #ffffff;
}

nav ul li a:visited {
    color: #dddddd;
}

/* Section styles */
section {
    margin: 20px 0;
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
}

section h2 {
    font-size: 30px;
    margin-bottom: 10px;
    color: #2E8B57;
}

/* Contact section */
#contact p {
    font-size: 18px;
}

#contact a {
    color: #333;
    text-decoration: none;
}

/* Skills section */
#skills ul {
    list-style: none;
}

#skills li {
    font-size: 18px;
    background: #f4f4f4;
    padding: 5px;
    margin: 5px 0;
}

/* Experience section */
#experience .job {
    margin: 20px 0;
}

#experience h3 {
    font-size: 20px;
    color: #333;
}

#experience p {
    font-size: 16px;
}

/* Education section */
#education .education {
    margin: 20px 0;
}

#education h3 {
    font-size: 20px;
    color: #333;
}

#education p {
    font-size: 16px;
}

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

