.header {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    height: 10vh;
    align-content: center;
    margin-left: 5vw;
}

.backarrow {
    margin-top: 4vh;
    font-size: 40px;
    color: #823E3C;
    text-decoration: none;
    font-weight: lighter;
    font-family: "PP Neue Montreal", serif;
}

.backarrow:hover {
    color: #fbeede;
    transition: 0.35s;
}

.nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-evenly;
}

.navButton {
    font-size: 2.25rem;
    font-family: "PP Neue Montreal", serif;
    font-weight: lighter;
    color: #823E3C;
    transition: 0.35s;
}

.navButton:hover {
    color: #fbeede;
    transition: 0.35s;
}

.a {
    text-decoration: none;
}

/* Content area styles */
.content-area {
    width: 75vw;
    margin: 5vh auto;
    padding: 0;
    min-height: 60vh;
}

.cv-download {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60vh;
}

.cv-link {
    font-size: 2.5rem;
    font-family: "PP Neue Montreal", serif;
    font-weight: lighter;
    color: #823E3C;
    text-decoration: none;
    transition: 0.35s;
    display: block;
    white-space: nowrap;
}

.cv-link:hover {
    color: #fbeede;
    transition: 0.35s;
}

.content-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    color: #333333;
    font-family: "PP Neue Montreal", serif;
    line-height: 1.6;
    position: absolute;
    width: 75vw;
    pointer-events: none;
}

.content-section.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
    pointer-events: auto;
}

.content-section.active ~ .cv-download {
    display: none;
}

.entry {
    margin-bottom: 2.5rem;
    border-left: 2px solid #823E3C;
    padding-left: 1.5rem;
}

.company-name {
    font-size: 1.80rem;
    color: #823E3C;
    font-weight: lighter;
    margin-bottom: 0.3rem;
}

.position-title {
    font-size: 1.1rem;
    color: #333333;
    margin-bottom: 0.2rem;
}

.date-location {
    font-size: 0.9rem;
    color: #666666;
    margin-bottom: 1rem;
    font-style: italic;
}

.description {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.description ul {
    margin: 0.5rem 0;
    padding-left: 1.2rem;
}

.description li {
    margin-bottom: 0.4rem;
    color: #333333;
}

.cv-download {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35vh;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.25s ease, transform 0.25s ease;
    position: absolute;
    width: 75vw;
}

.cv-download.hide {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.cv-link {
    text-align: center;
    margin-bottom: 3vh;
    font-size: 2.25rem;
    font-family: "PP Neue Montreal", serif;
    font-weight: lighter;
    color: #823E3C;
    text-decoration: none;
    transition: 0.35s;
}

.cv-link:hover {
    color: #fbeede;
    transition: 0.35s;
}