@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

body {
    margin: 0;
    padding: 0;
    background-color: #151515;
    font-family: 'Montserrat', sans-serif;
}

.nav-container {
    display: flex;
    justify-content: center;
    gap: clamp(1rem, 2vw, 3rem);
    padding: clamp(0.6rem, 1vw, 1rem) clamp(1vw, 5vw, 3rem);
    /*gap: 2vw;            /* Relative gap instead of fixed px */
    /*padding: 0.8rem 1.3vw;   /* Padding adjusts with screen size */
    border: 2px solid white;
    border-radius: 50px;
    width: fit-content;
    margin: 2vh auto 0 auto; /* Top margin relative to viewport */
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    /*font-size: 1rem;      /* Relative font size */
}

.nav-link:hover {
    color: #DBC4F0; /* Optional hover effect */
}
