:root{
    font-family: "Geist", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    --bio-spacing: 20px;
    --primary-color: rgb(199, 61, 61);
    --button-hover-color: rgb(160, 50, 50);
}
body{
    display: flex;
    flex-direction: column;
    align-items: center;
    
}
.navbar{
    display: flex;
    flex-direction: row;
    justify-content:flex-start;
    align-items:center;
    gap: 20px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.navbar div {
    margin-right: 20px;
    margin-top:10px;
}

.navbar div:last-child {
    margin-right: 0;
}

.bio{
    display: flex;
    flex-direction: column;
}


.navbar, .bio, .picture, .contact, .ps {
    max-width: 510px;
    width: 100%;
    text-align:start;
}

.bio h1,
.bio p,.contact div,.navbar {
    margin: 0 0 var(--bio-spacing) 0;
}

.bio p:last-child {
    margin-bottom: 0;
}
.bio h1, .contact h2{
    color: var(--primary-color)
}
.bio p,.contact{
    color: grey;
}
.ps{
    color: rgb(167, 167, 167);
}
.picture{
    margin-top: 10px;
    margin-bottom: 10px;
    
}

.navbar a,
.contact a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.navbar a:hover,
.contact a:hover {
    text-decoration: underline;
    color: var(--button-hover-color);
}
.picture img{
    width: 510px;
}
