
* {
    --dutch-white: rgb(236, 232, 223);
    --jordy-blue: #afcbffff;
    --van-dyke: rgb(55, 49, 49);
    --old-rose: #ba6e6eff;
    --sea-green: #3e885bff;
}
html, body {
    height: 100%;
    /* color:var(--van-dyke); */
    /* background-color: #d4d4d4; */
    margin: 0 auto;
    font-size: 15pt;
    font-family: "Roboto","Segoe UI","Helvetica Neue","Lucida Grande",Arial,sans-serif;
}
#frontpage-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-around;
    background-color: white;
}
body {
    line-height:1.6;
    height: auto;
}
main {
    line-height:1.6;
    height: auto;
}
a {
    color: var(--sea-green);
    text-decoration: underline;
}
h1,h2,h3{
    line-height:1.2
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3px 15px;
    background-color: #6b6b6b;
    color: white;
}
h1 {
    margin: 0;
}
#page-nav {
    float:right;
    margin-right:0
}
#profile {
    margin-right: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
#main-body {
    width: 800px;
}
#me-photo {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
}
.sub-profile {
    color: gray;
    font-size: 12pt;
}
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}
nav ul li {
    display: inline;
}
nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}
nav ul li a:hover {
    text-decoration: underline;
}
header a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 24px;
}
.subwidth-wrapper {
    width: 60vw;
    margin: 0 auto;
}