html {
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-y: scroll;
}

section,
header {
    scroll-snap-align: start;
}

.topBar {
    display: flex;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 0 2rem;
}

header {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location p {
    margin: 0;
}

section {
    width: 80%;
    margin: 0 auto;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.about-picture {
    display: flex;
    justify-content: center;
    align-items: center;
    grid-column: 1;
    margin-right: 10px;
}

.about-presentation {
    grid-column: 2;
    align-self: center;
    padding-bottom: 1em;
}

.about-ling {
    margin-top: 5em;
}

figcaption {
    text-align: center;
    width: 300px;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
}

footer ul {
    display: flex;
    gap: 2rem;
    width: 80%;
    justify-content: space-between;
    padding: 2em 0;
}

.skills {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-content: center;
}

.skills-interests {
    grid-column: 2;
    justify-self: center;
    display: flex;
    flex-direction: column;
    height: 70vh;
}

.skills-main {
    grid-column: 1;
    justify-self: center;
    display: flex;
    flex-direction: column;
    height: 70vh;
}

.skills-main-list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 70%;
}

.skills-interests-list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 50%;
}

.skills-interests-list li,
.skills-main-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.experience-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-content: center;
    margin-top: 1em;
    justify-items: center;
    align-items: center;
}

.experience-list {
    grid-column: 2;
    justify-self: center;
    align-self: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 80%;
    text-align: justify;
}

.experience-figure {
    grid-column: 1;
}

.experience-section .experience-location {
    margin: 0;
    margin-top: -1em;
}

.education-card {
    margin-top: 1em;
}

.education-location {
    margin-top: 0;
}

.education-columns {
    display: grid;
    grid-template-columns: 3fr 7fr;
    gap: 1rem;
    align-items: stretch;
}

.education-list {
    grid-column: 2;
    padding-left: 1rem;
    flex-direction: column;
    gap: 1rem;
}

.education-dates {
    grid-column: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}


.education-date {
    text-align: right;
    width: 100%;
}

.activities-columns {
    display: grid;
    grid-template-columns: 3fr 7fr;
    gap: 1rem;
    align-items: stretch;
}

.activities-dates {
    grid-column: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.activities-list {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-left: 1rem;
}