html {
   margin: 0px;
   height: 100vh;
   width: 100vw;
}

body {
    display: flex;
    flex-direction: column;
    margin: 0px;
    height: 100vh;
    width: 100vw;
}

#header {
    width: 100%;
    min-height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    position: sticky;
    top: 0;
    z-index: 100;
    filter: drop-shadow(0px 4px 4px #0000003f);
}

#header-socials {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 1vh;
    margin-left: 2vh;
}

#header-socials a {
    width: fit-content;
    height: fit-content;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    object-fit: scale-down;
    height: 5%;
}

#header-socials img {
    width: 5vh;
    height: 5vh;
    margin-right: .5vw;
}

#header-socials-menu {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: .5em 1em .5em 1em;
    margin-right: 2vh;
    background-color: white;
    border-color: #000;
    border: 1;
    border-style: solid;
}

#header-socials-menu:hover {
    border-color: #007FFF;
    background-color: #007FFF;
    filter: invert(1);
}

#header-socials-menu img {
    height: 2vh;
}

#header-socials-menu p {
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0;
    margin-left: 1vh;
}

#content {
    width: 100%;
    flex-grow: 1;
    overflow-y: scroll;
    z-index: 50;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#content-header {
    width: 70%;
    box-shadow: inset 0px 0px 20px #0000003f;
    background-color: #FAFAFA;
    padding: 2vh;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
    margin: 10vh;
}

#content-header-title {
    color: black;
    width: 60%;
    height: fit-content;
    text-wrap: balance;
    font-weight: 600;
    font-size: 5rem;
    margin: 0;
    line-height: 1.25;
}

#content-header-img {
    transform: scaleX(-1);
    inline-size: 55vh;
    position: absolute;
    right: -2vw;
    top: -7.5vh;
}

#content-header-title a:link, a:visited, a:hover, a:active {
    color: #FF7F00;
}

#content-header-title strong {
    color: #FF7F00;
}

.text {
    font-family: "Hubot Sans";
}

.body-box {
    width: 100%;
    height: fit-content;
    margin-bottom: 5vh;
}

.separated {
    border-top: 5px solid black;
}

#content-assessment {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#content-items {
    width: 70%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.content-box h1 {
    font-size: 2.5rem;
}

#content-about p {
    font-size: 1.5rem;
    text-wrap: balance;
}

.content-project a {
    font-weight: 600;
}

.text a, a:link, a:visited {
    color: #FF7F00
}

.text a:hover, a:active {
    color: #FFAF7F;
}

#body-review {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#body-review h1 {
    text-decoration: underline;
    color: #FF7F00;
}

#body-review video {
    width: 100%;
    height: 100%;
}

#body-final {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.content-project-desc, .content-assessment-desc {
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 2;
    margin: 0;
}

.content-assessment-desc{
    text-align: center;
}

.content-project-date {
    font-weight: 100;
    font-size: 1.2rem;
    line-height: 1;
    margin: 0;
    text-align: right;
}

#footer {
    height: fit-content;
    width: 100%;
    background-color: white;
    filter: drop-shadow(0px -4px 4px #0000003f);
}

#footer p {
    margin-left: 1vw;
    font-weight: 300;
    color: darkgrey;
}

#footer a {
    margin-top: 0;
    margin-left: 2%;
}