body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #121212;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    padding: 20px 0;
    background-color: #1e1e1e;
    border-radius: 8px;
}

h1 {
    margin-bottom: 5px;
    color: #bb86fc;
}

h2 {
    color: #03dac6;
}

nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    background-color: #1e1e1e;
    border-radius: 8px;
    margin-top: 20px;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    color: #bb86fc;
    text-decoration: none;
    padding: 10px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #03dac6;
}

section {
    margin-bottom: 30px;
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 8px;
}

.job {
    margin-bottom: 20px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
}

.job:last-child {
    border-bottom: none;
}

.date {
    font-style: italic;
    color: #bb86fc;
}

ul {
    padding-left: 20px;
}

footer {
    text-align: center;
    padding: 20px 0;
    background-color: #1e1e1e;
    margin-top: 30px;
    border-radius: 8px;
}

a {
    color: #bb86fc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.profile-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #03dac6;
}