nav {
    width: 100%;
    height: 5vh;
    display: grid;
    grid-template-columns: auto 1fr 10vw auto;
    justify-content: center;
    align-content: center;
    align-items: center;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(1vh);
    border-bottom: 0.1vh solid rgba(255, 255, 255, 0.1);
    padding: 0 1vw;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1vw;
}

.nav-logo img {
    height: 1.7vw;
}

.nav-links {
    justify-content: center;
    display: flex;
    flex-grow: 1;
    gap: 5vw;
}

.nav-links > a {
    text-align: center;
    color: white;
    text-decoration: none;
}

.nav-button {
    padding: 0.5vh 1vw;
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    color: white;
    border: none;
    border-radius: 1vh;
    cursor: pointer;
    font-size: 2vh;
    transition: 0.3s;
}

.nav-button:hover {
    opacity: 0.8;
}
