:root {
    --primary-color: #519e8a;
    --secondary-color: #476a6f;
    --positive-color: #7eb09b;
    --negative-color: #ecbeb4;
    --accent-color: #c5c9a4;
}

body {
    margin: 0px;
    padding: 0px;
    font-family: "Urbanist", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-size: 13pt;
    font-style: normal;
    letter-spacing: .7pt;
}

nav a {
    text-decoration: none;
    color: white;
}

ul {
    margin: 0px;
    padding: 0px;
}

li {
    list-style: none;
    margin: 0px;
}

header {
    background-color: var(--secondary-color);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    display: flex;
    justify-content: start;
}

.nav-item {
    /* Add transition */
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-item a {
    padding: 15pt 20pt;
    text-decoration: none;
    display: block;

}

.nav-item a.active {
    background-color: var(--primary-color);
}

.nav-item:hover {
    background-color: var(--accent-color);
}

.socials {
    display: flex;
    justify-content: end;
}

.socials img {
    margin-top: 50%;
    height: 30px;
    margin: 5px;
    transition: height 0.3s ease, color 0.3s ease;
}

.socials img:hover {
    height: 35px;
}

.hero-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 50vh;
    text-align: center;
}

.hero-section h1 {
    font-size: 42pt;
    font-weight: 500;
    letter-spacing: 5pt;
    color: var(--secondary-color);
    margin-bottom: 5pt;
}

.hero-section p {
    letter-spacing: 2pt;
}

.side-by-side-layout {
    display: flex;
    /* justify-items: center; */
    justify-content: center;
}

.side-by-side-item {
    text-align: center;
    padding: 0 10pt;
}

.bio {
    display: flex;
    justify-content: center;
    height: 50vh;
    align-items: center;
    background-color: #eeeeee;
}

.bio>* {
    margin: 0 10pt;
}

.bio-image {
    width: 150px;
    height: 150px;
    clip-path: circle(50%);
    object-fit: cover;
}

.vertical-line {
    width: 4px;
    height: 200px;
    background-color: var(--secondary-color);
    color: black;
}

.bio p {
    max-width: 400px;
}

.copyright {
    margin-bottom: 100px;
    width: 100%;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    height: 28pt;
    background-color: var(--secondary-color);
}

.contact-confirmation {
    display: none;
}