body {
    font-family: Arial, sans-serif;
    color: black;
    font-size: 16px;
    display: flex;
    justify-content: center;
    padding: 20px;
    margin: 0;
    background-color: #f4f4f4;
}

.cv-container {
    width: 600px;
    border: 1px solid black;
    background-color: white;
}

main {
    padding: 20px;
}

.h1-container {
    background-color: lightgray;
    padding: 10px 0;
    margin-bottom: 20px;
}

h1 {
    font-family: Georgia, serif;
    color: blue;
    font-weight: bold;
    font-size: 24px;
    letter-spacing: 1.6em;
    word-spacing: 2em;
    text-align: center;
    margin: 0;
}

.section-title {
    font-family: Georgia, serif;
    color: darkred;
    font-size: 18px;
    letter-spacing: 1.4em;
    margin-bottom: 10px;
    font-weight: normal; 
}

.cv-section {
    padding-bottom: 20px;
}

.entry {
    display: flex;
    margin-bottom: 8px;
}

.year-span {
    font-weight: bold;
    width: 120px; 
    flex-shrink: 0;
    padding-right: 10px;
}

.entry p {
    margin: 0;
    flex-grow: 1; 
}

.cv-section p {
    margin: 5px 0 5px 120px;
}

.cv-section p strong {
    font-weight: bold;
}

.cv-section p strong::after {
    content: attr(data-content);
    font-weight: normal;
}