* {
    margin: 0;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}
nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    border-radius: 20rem;
    position: fixed;   
    width: 99vw;
    right: 0.5vw;
    left: 0.5vw;
    top: 0.35rem;
    backdrop-filter: blur(6px) saturate(1%);
    -webkit-backdrop-filter: blur(6px) saturate(1%);
    box-shadow: inset 0 0px 5px rgba(255, 255, 255, 0.35), inset 0 -1px 5px rgba(0, 0, 0, 0.08), 0 1px 24px rgba(0, 0, 0, 0.05);
    z-index: 2;
}
nav div {
    padding: 0.5rem 0.5rem;
}
nav a {
    text-decoration: none;
    color: #0000004b;
    font-size: 1rem;
    line-height: 1.5rem;
    padding: 0 0.5rem;
    text-shadow: 1px 1px 10px rgb(255, 255, 255);
}
nav a:hover {
    text-decoration: underline;
}
nav .left {
    display: flex;
    align-items: center;
}
nav .left img {
    height: 0.75rem;
    object-fit: contain;
    margin-left: 1rem;
}
nav .center {
    display: flex;
    justify-content: center;
}
nav .right {
    display: none;
    gap: 0.5rem;
}
@media screen and (max-width: 768px) {
    nav {
        grid-template-columns: repeat(2, 1fr);
    }
    nav .center {
        display: flex;
        justify-content: end;
    }
}