body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    background-image: url('/images/flightaway.jpg');
    font-family: "Overpass", sans-serif;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    box-sizing: border-box;
    animation-duration: 0.5s;
    animation-timing-function: ease-out;
    animation-name: fade-in;
}
@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 100;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

.backarrow{
    height: 40px;
    align-self: center;
    margin-right: 1%;
    padding-top: 5%;
    filter: invert(23%) sepia(80%) saturate(350%) hue-rotate(185deg) brightness(80%) contrast(102%);
}
.arrowback{
    height: 40px;
}
@media (max-width: 500px) {
    .arrowback{
        height: 20px;
    }
    .LoadTitle h1{
        font-size: 20pt !important;
    }
    .ViewerForm{
        column-gap: 0 !important;
        grid-template-columns: unset !important;

    }
    .ViewerData-5{
        grid-column: unset !important;
        grid-row-start: 7 !important;
        grid-row-end: 8 !important;
    }
    .ViewerData-5 label{
        font-size: 12pt !important;
    }
}
.arrowlink:hover .arrowback{
    height: 42px;
    transition: height 0.1s;
}
.arrowlink{
    cursor: pointer;
}
.MainGrid {
    display: grid;
    width: 100%;
    grid-template-rows: 20fr 60fr 20fr;
    height: 100%;
}
.MainTitle {
    height: 100%;
    display: flex;
    grid-row-start: 1;
    grid-row-end: 2;
    align-items: center;
    margin-left: 5%;
    margin-right: 5%;
}
.MainTitle a{
    height: 20%;
    display: flex;
    width: 20%;
    cursor: pointer;
    justify-content: center;
}
.MainTitle nav{
    justify-content: center;
    margin: 0px;
    width: 100%;
    display: flex;
    flex-direction: row;
}
.MainTitle p{
    color: white;
}
.TextBackground {
    background-color: transparent;
}
.ProjectDescription {
    grid-row-start: 2;
    grid-row-end: 3;
    padding: 0 10%;
}
.ProjectDescription p{
    font-size: 14pt;
    color: white;
    font-weight: 100;
    background-color: #0a0a0a;
}
@media (max-width: 500px) {
    .ProjectDescription{
        grid-row-start: 2;
        grid-row-end: 4;
    }
}
.LoginRectangle{
    background-color: red;
    display: flex;
    height: 100%;
    margin-left: 5%;
    margin-right: 5%;
}
