.header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    height: 5rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
}
.logo{
    max-width: 8rem;
    margin-left: 2rem;
}
.nav{
    display: flex;
    height: 100%;
    align-items: center;
}
.nav ul{
    display: flex;
    gap: 2rem;
}
.nav a{
    text-decoration: none;
    color: #FFF;
    text-transform: uppercase;
}
.nav li{
    position: relative;
}
.nav li::after{
    content: "|";
    color: #FFF;
    position: absolute;
    left: -1.1rem;
}
.nav li:first-of-type::after{
    content: "";
}
li.active a{
    color: #C7974F;
}
.nav .special{
    height: 100%;
    display: flex;
    align-items: center;
    margin-left: 1.5rem;
}
.nav .special a{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 20ch;
    text-align: center;
    padding: 2rem 2rem;
    line-height: 1.1;
    background-color: #772E3F;
}
.nav .special .special--discord{
    background-color: #5865F2;
}

/* 1024 */
.hamburger{
    display: none;
    border: none;
    background: transparent;
    width: max-content;
    cursor:pointer;
    margin-left: 1rem;
}
.in-development{
    position: absolute;
    color: #FFF;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6em;
    white-space: nowrap;
    font-weight: bold;
    color: rgb(117, 117, 117);
}
.soon a{
    opacity: 0.5;
}
@media (max-width: 1054px) {
    .hamburger{
        display: block;
    }
    .nav ul{
        display: none;
        position: fixed;
        top: 5rem;
        left: 0;
        width: 100%;
        height: 90vh;
        background-color: #FFF;
        flex-direction: column;
        gap: 0;
        z-index: 2;
    }
    .nav li::after{
        content: "";
        display: none;
    }
    .nav ul a{
        display: block;
        text-align: center;
        color: #000;
        border-top: 1px solid #000;
        width: 100%;
        padding: 2rem;
    }
    .header{
        justify-content: flex-start;
    }
    .nav{
        margin-left: auto;
    }
    .nav .special a{
        max-width: calc(19vw);
        font-size: 0.9em;
        padding: 0;
    }
    .logo{
        max-width: 5rem;
        margin-right: auto;
    }

}

@media (max-width: 400px) {
    .nav .special a{
        font-size: .65rem;
        max-width: none;
    }
    .nav{
        margin-left: 0.2rem;
        width: 100%;
    }
    .logo{
        margin-left: 1rem;
    }

}
.onlyicon{
    width: 5rem;
    height:100%;
    background-image: url(../icons/discord.svg);
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
}