*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
    font-weight: 750;
    font-size: 12.5px;
    text-align: center;
    transition: ease 0.25s;}
Body{
    display: grid;
    grid-template-rows: repeat (4, 1fr);
    align-content: center;
    background: #194b64;
    width: auto;
    height: 100dvh;}

Header{
    display: grid;
    width: 100%;
    height: 48px;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    position: fixed;
    align-items: center;
    justify-items: center;
    background: rgb(255, 27, 141, 0.5);

.HexLogo{
    display: grid;
    grid-row: 2;
    grid-column: 1;
    justify-self: start;}
.HexLogo img{
    display: grid;
    width: 24px;
    height: auto;
    margin: 12.5px;}

@media (max-width: 817px){
.NavigationBar{
    display: none;}
.HexLogo, .HexLogo img{
    grid-row: 2;
    grid-column: 2;
    justify-self: center;
    align-items: center;
    width: 48px;
    margin: 0px;
    height: auto}}
@media (max-width: 576px), (max-height: 817px){
    .NavigationBar {
        display: none;}
    .HexLogo, .HexLogo img{
        grid-row: 2;
        grid-column: 2;
        justify-self: center;
        align-items: center;
        width: 48px;
        margin: 0px;
        height: auto}}


.DeskNavigationBar{
    display: grid;
    grid-row: 2;
    grid-column: 2;
.NavigationBar ul{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    list-style: none;
    gap: 25px;}
.NavigationBar ul li a{
    background: #194b64;
    margin: 3.125px;
    padding: 6.25px;
    border-radius: 6.25px;}
.NavigationBar ul li a:hover{
    background: #361964;}
.NavigationBar a{
    color: white;
    text-decoration: none;}}}


Main{
    display: grid;
    width: 100%;
    height: 50vb;
    grid-area: 2;
    justify-self: center;
    justify-items: center;
    margin: 25px;
    background: #FFDA00;}
/* Portrait */
@media (min-width: 256px){
    .Main {
        grid-template-columns: repeat(auto-fit, minmax(576px, 1fr));}}
@media (max-width: 817px){
    .Main{
        display: none;
        height: 0;}}

/* Landscape */
@media (min-width: 576px) {
    .Main {
        grid-template-columns: repeat(auto-fit, minmax(817px, 1fr));}}
@media (max-width: 576px), (max-height: 817px){
    .Main {
        display: none;
        height: 0;}}

.Project-Gallery{
    display: grid;
    grid-area: 3;
    width: 100%;
    height: auto;
    align-items: center;
    justify-items: center;
    grid-template-columns: repeat(auto-fit, minmax(256px, 1fr));
    gap: 12.5px;
    padding: 12.5px;
    background: #00ffbf;
.Reg, .CH, .Marte{
    display: grid;
    align-items: center;
    justify-items: center;}
.Reg img, .CH img, .Marte img{
    align-items: center;
    justify-items: center;
    display: grid;
    width: 100%;
    height: auto;
    border: 12.5px solid rgba(128, 128, 128, 0.25);
    border-radius: 25px;}
.Reg img:hover, .CH img:hover, .Marte img:hover{
    align-items: center;
    justify-items: center;
    display: grid;
    width: 100%;
    height: auto;
    border: 6.25px solid rgba(25, 75, 100, 1);
    border-radius: 12.5px;}}

Footer{
    display: grid;
    position: fixed;
    margin: 12.5px;
    bottom: 0;
    width: 75%;
    height: 64px;
    grid-area: 4;
    justify-self: center;
    justify-items: center;
    background: rgb(27, 179, 255, 0.5);
    border-radius: 12.5px;}