.headerMobile{
    display: none;
}

@media screen and   (max-width: 800px) {
    .headerMobile{
        position: absolute;
        top: 0px ;
        left: 0px;
        height: 45px;
        width: 100%;
        background-color: rgba(12, 12, 12, 0.369);
        z-index: 40;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter:blur(02px);
        color: white;
    }
}


