*{
    padding: 0;
    margin: 0;
    font-family: "Poppins", Helvetica, sans-serif;
}
nav{
    background-color: white;
    font-size: 18px;
    z-index: 999;
    box-shadow: 3px 3px 5px rgba(0,0,0,0.15);
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
}
nav li{
    height: 50px;
}
nav li:first-child{
    margin-right: auto;
}
nav li a{
    text-decoration: none;
    color: #f75ea2;
    padding: 0px 30px;
    height: 100%;
    display: flex;
    align-items: center;
}
nav li a:hover{
    color: white;
    background-color: #f75ea2;
    transition: 0.3s ease-in-out;
}
nav ul{
    display: flex;
    justify-content: flex-end;
    list-style: none;
    align-items: center;
    width: 100%;
}
.hidesidebar{
    margin-right: auto;
    font-weight: 600;
    font-size: 22px;
}

.sidebar{
    position: fixed;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    height: 100vh;
    width: 250px;
    top: 0;
    right: 0;
    z-index: 999;
    background-color: rgba(255, 255, 255, 0.541);
    backdrop-filter: blur(10px);
}

.sidebar li{
    width: 100%;
}
.sidebar img{
    margin-top: 10px;
    margin-left: 10px
}
.sidebar img:active{
    background-color: #f75ea380;
}
.menu{
    display: none;
}
@media(max-width: 800px){
    .page-links-desk{
        display: none;
    }
    .menu{
        display: block;
    }
}
@media(max-width: 400px){
    .sidebar{
        width: 100%;
    }
}


