nav {
    background-color: var(--main-color);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 3px solid var(--secondary-color);
}

nav * {
    color: var(--background-color);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    width: 60%;
    margin: auto;
}

nav div {
    display: flex;
    gap: 10px;
    align-items: center;
}

#nav-logo {
    height: 35px;
    image-rendering: pixelated;
    margin: 0;
    margin-right: 15px;
}

.nav-left a {
    padding: 8px 16px;
}

.nav-left .btn {
    border-color: var(--secondary-color);
}

.nav-active {
    background-color: var(--secondary-color);
    border-color: white !important;
}

#nav-discord {
    max-height: 100%;
}

#nav-discord svg {
    width: 24px;
    height: 24px;
    fill: white;
    display: inline-block;
    vertical-align: middle;
    padding: 0;
    margin: 0;
}

.copy-ip {
    font-weight: bold;
    min-width: 140px;
    color: var(--text-color);
}

.nav-right {
    height: 50px;
}

@media (max-width: 1200px) {
    .nav-wrapper {
        width: 90%;
    }
}

@media (max-width: 700px) {
    .nav-right .copy-ip {
        display: none;
    }
}