/* Reset and Base Styles */
* {
    font-family: "Bitcount Grid Single", system-ui;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #ffffff;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    backdrop-filter: blur(3px);
    z-index: 1000;
    border-bottom: 1px solid #ffffff;
}

.nav-container {
    margin: 0 auto;
    padding: 0.1rem 0.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    margin: 0 auto;
    padding: 0.1rem 0.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.1rem;
}

.logo-image {
    max-height: 10vh;
}

.header {
    padding: 20px;
    text-align: center;
    background: #000;;
    font-size: 5vh;
}

.font-bitcount-norm {
    font-family: "Bitcount Grid Single", system-ui;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: 5vh;
}

.font-bitcount-small {
    font-family: "Bitcount Grid Single", system-ui;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: 2vh;
}