#nav-container {
    display: flex;
    justify-content: center;

    margin-bottom: 2rem;
    font-size: 16px;
}

#main-nav {
    width: calc(100% - 8rem);
    display: flex;
    flex-grow: 1;
    justify-content: space-between;
    align-items: center;
    /*border: 1px solid hsl(192.22deg 100% 10.59% / 6%);*/
    border-radius: 25px;
    corner-shape: squircle;
    padding-right: 1rem;
    backdrop-filter: blur(32px) saturate(2.12);
    /*background-color: hsl(192.22deg 100% 10.59% / 6%);*/
    position: fixed;

    margin-top: .75rem;
    margin-bottom: .75rem;
    margin-left: 2rem;
    margin-right: 2rem;

    padding-left: 0.5rem;
    padding-right: 0.5rem;
    corner-shape: squircle;

    z-index: 1000;
}

#main-nav > div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
}

#main-nav a {
    text-decoration: none;
    color: hsl(192.22deg 100% 10.59% / 100%);
    transition: all 0.1s;
}

#main-nav a:hover {
    color: hsl(192.22deg 97.01% 35.54% / 100%);
}