.site-body{
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
    background: #ffffff;
}
.header{
    width: 100%;
    background: #001a33;
    z-index: 1;
}
.header-top{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    column-gap: 2rem;
    padding: 1.3rem 0 0 0;
}
.site-title{
    font-family: Arial, sans-serif;
    font-size: 12px;
    text-align: center;
    padding: 0 0 1rem 0;
    border-bottom: .1px solid #888;
}
.title{
    color: #FFD700;
}
.site-logo{
    width: 35px;
    height: 35px;
}
.header-logo-image{
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.menu{
    width: 100%;
}
.top-menu{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: left;
    column-gap: 1.8rem;
    padding: 1rem 2rem;
}
.menu-icon-symbol-paragraph{
    color: #ffffff;
    font-size: 1.6rem;
}
.top-menu-link{
    display: flex;
    flex-direction: row;
    column-gap: 1.8rem;
}
.menu-links{
    width: 100%;
    display: none;
    flex-direction: column;
    row-gap: 1.5rem;
    background: transparent;
    position: absolute;
    top: 5rem;
    left: 0;
    z-index: 9;
}
.nothing-to-do{
    width: fit-content;
    background: #001a33;
}
.close-menu-icon{
    padding: 0.5rem 1.3rem 0.5rem 1.3rem;
}
.close-menu-icon-symbol-paragraph{
    color: #ffffff;
    font-size: 1.6rem;
}
.real-site-link{
    display: flex;
    flex-direction: column;
    padding: 0 1.3rem 1.5rem 1.3rem;
    row-gap: 1rem;
}
.real-site-link a{
    text-transform: capitalize;
}
.menu a{
    color: #ffffff;
    font-size: 20px;
    font-family: Arial;
    text-decoration: none;
}
.menu a:hover{
    text-decoration: underline;
}

@media(min-width: 768px){
    .site-title{
        font-size: 18px;
    }
    .menu a{
        font-size: 25px;
    }
}

@media(min-width: 1024px){
    .header-top{
        border-bottom: .3px solid #888888;
        padding: 1rem 0;
    }
    .site-title{
        font-size: 16px;
        border-bottom: 0;
        padding: 0;
    }
    .top-menu{
        display: none;
    }
    .menu-links{
        width: 100%;
        display: block;
        flex-direction: unset;
        row-gap: unset;
        background: unset;
        position: relative;
        top: unset;
        left: unset;
        z-index: unset;
    }
    .nothing-to-do{
        width: unset;
        background: unset;
    }
    .close-menu-icon{
        display: none;
    }
    .real-site-link{
        width: 100%;
        display: flex;
        flex-direction: row;
        column-gap: 1rem;
        align-items: center;
        justify-content: center;
        padding: .8rem 0;
        background: unset;
    }
    .menu a{
        font-size: 16px;
    } 
}