body {
    font-family:Arial, Helvetica, sans-serif;
    background-color: black;
    color: white;
}

a {
    color: white;
}

a:hover {
	color: gray;
}

#top {
    text-align: center;
}

#logo-name {
    padding-top: 2vh;
    padding-bottom: 1vh;
    font-size: 32px;
    font-weight: bold;
}

#navigation a {
    padding-left: 1vw;
    padding-right: 1vw;
    color: white;
}

#navigation a:hover {
    color: grey;
}

#main0 {
    display: flex;
    gap: 2vw;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 800px;
}

#main1 {
    max-width: 800px;
    margin-top: 5%;
    margin-left: auto;
    text-align: center;
}

#biography {
    text-align: justify;
}

#main0 > #profilePicture {
    align-self: center;
    width: 20vw;
    height: 28vmin;
    object-fit: cover;
    object-position: center;
}

#main1 > #profilePicture {
    width: 20vw;
    height: 28vmin;
    object-fit: cover;
    object-position: center;
}

#footer0 {
    position: absolute;
    left: 50%;
    bottom: 0%;
    transform: translate(-50%, 0%);
    text-align: center;
    color: grey;
    max-width: 800px;
    padding: 16px;
}

#footer1 {
    position: absolute;
    left: 50%;
    bottom: 0%;
    transform: translate(-50%, 0%);
    text-align: justify;
    color: grey;
    max-width: 800px;
    padding: 16px;
}