body {
    background-color: #06100C;
    width: 100%;
    height: 100vh;
    margin: 0px;
}

nav {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 18px;
    position: fixed;
    color: rgba(255, 255, 255, 0.50);
    text-align: center;
    font-family: Figtree;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.6px;
    transition: 0.3s;
    z-index: 1;
}

.navlinks {
    display: flex;
    height: 66px;
    padding: 0px 28px;
    align-items: center;
    gap: 26px;
    border-radius: 59px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(13, 33, 25, 0.50);
    box-shadow: 0px 4px 34.7px 0px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(25px);
    transition: 0.3s;
}

.navicon {
    display: flex;
    width: 66px;
    height: 66px;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-shrink: 0;
    border-radius: 59px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(13, 33, 25, 0.50);
    box-shadow: 0px 4px 34.7px 0px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(25px);
    transition: 0.3s;
}

.navlinks a{
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

.navicon:hover {
    background: rgba(21, 46, 36, 0.5);
    box-shadow: 0px 4px 34.7px 0px rgba(34, 36, 34, 0.25);
}

.navlinks:hover {
    background: rgba(21, 46, 36, 0.5);
    box-shadow: 0px 4px 34.7px 0px rgba(34, 36, 34, 0.25);
}

.navlinks a:hover {
    color: rgba(255, 255, 255, 0.8);
    transition: 0.3s;
}

nav:hover {
    scale: 1.025;
}

.noselect {
    -webkit-user-select: none;
    user-select: none;
  }