body {
    --color-primary: #214F17;
    --color-secondary: #495867;
    --color-tertiary: #998650;
    --color-accent: #ff7477;
    --space-small: 16px;
    --space-base: 24px;
    --space-large: 32px;

    display: inline-flex;
    flex-direction: row;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}

nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 20vw;
    min-width: 180px;
    background-color: var(--color-primary);
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: bolder;

    position: sticky;
    top: 0;
    left: 0;
    height: 100vh;
}

nav div {
    text-transform: uppercase;
    text-decoration: none;
    color: var(--color-tertiary);
    width: 80%;
    padding: 6px;
    text-align: center;
}

nav div:hover {
    background-color: #3a6d2e;
    cursor: pointer;
}

.navSelected {
    color: white;
}


#profileImage {
    border-radius: 50%;
    border: 6px solid var(--color-tertiary);
    margin-bottom: var(--space-small);
}

h1,
h2,
h3,
h4 {
    color: var(--color-secondary)
}

ul {
    max-width: 60vw;
}

p,
ul {
    color: #787778;
}

#portfolio {
    margin: var(--space-large);
}

#innerExperienceSection,
#innerProjectsSection {
    display: flex;
    flex-direction: column;
    gap: var(--space-large);
}

#technicalSkills {
    display: flex;
    flex-direction: column;
    width: 90%;
    margin: auto;
    font-size: 20pt;

    ul {
        list-style: none;
        display: flex;
        gap: var(--space-large);
        align-items: center;
        justify-content: center;
    }

}

.section {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 8px;

}

.subtitle {
    margin: 0;
    margin-bottom: var(--space-small);
    line-height: 8px;
    text-transform: uppercase;
}

.description {
    max-width: 60vw;
}

.divider {
    border-bottom: 1px solid var(--color-tertiary);
    height: 0;
    width: 100%;
    margin: var(--space-large) 0;
}

@media (max-width: 992px) {
    /* body {
        flex-direction: column;
    }

    nav {
        display: flex;
        flex-direction: row;
        gap: 52px
    } */
}