body {
    font-family: 'Averia Serif Libre', serif;
    background-color: #F5F5DC; /* Creme background */
    color: #222222; /* Dark brown/black text */
    margin: 0;
    padding: 0;
    line-height: 1.6;
    position: relative;
    min-height: 100vh;
}

.watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10vw;
    color: rgba(0, 0, 0, 0.03); /* Barely visible dark watermark */
    pointer-events: none;
    z-index: -1;
    white-space: nowrap;
    font-weight: bold;
    text-transform: uppercase;
}

header {
    text-align: center;
    padding: 40px 20px;
    border-bottom: 1px solid #222222;
    margin-bottom: 40px;
}

header h1 {
    font-size: 3em;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

header p {
    font-size: 1.2em;
    margin-top: 0;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

nav ul li {
    display: inline-block;
    margin: 0 15px;
}

nav ul li a {
    color: #222222;
    text-decoration: none;
    font-weight: bold;
    padding: 5px 0;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #222222;
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
}

nav ul li a:hover::after {
    transform: scaleX(1);
}

main {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

section {
    margin-bottom: 60px;
    padding: 30px;
    border: 1px solid #222222;
    box-shadow: 5px 5px 0px #222222;
    background-color: #FFFFFF;
}

section h2 {
    font-size: 2.2em;
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #222222;
    padding-bottom: 10px;
    letter-spacing: 1px;
}

.job-entry, .project-entry {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #AAAAAA;
}

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

.job-entry h3, .project-entry h3 {
    font-size: 1.5em;
    margin-bottom: 5px;
}

.job-entry .dates {
    font-style: italic;
    color: #555555;
    margin-bottom: 10px;
}

.project-entry .description {
    margin-bottom: 10px;
}

.job-entry ul {
    list-style: square;
    margin-left: 20px;
}

footer {
    text-align: center;
    padding: 20px;
    margin-top: 60px;
    border-top: 1px solid #222222;
    color: #555555;
    font-size: 0.9em;
}
