/* Reset all elements to have no margin, padding, and border */
* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
}

/* Set a base font size and line height */
body {
    font-size: 16px;
    line-height: 1.5;
    background: #ff04b0;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    --scroll-percentage: 0;
}

/* Remove list styles */
ul, ol {
    list-style: none;
}

/* Remove default hyperlink styles */
a {
    text-decoration: none;
    color: inherit;
}

/* Remove default form styles */
input, textarea, select, button {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    appearance: none;
}

/* Fonts */
@font-face {
    font-family: 'PPSupplyMono';
    src: url('./font/PPSupplyMono-Regular.ttf') format('truetype');
    src: url('./font/PPSupplyMono-Regular.woff') format('woff');
    src: url('./font/PPSupplyMono-Regular.woff2') format('woff2');
    src: url('./font/PPSupplyMono-Regular.otf') format('opentype');
    font-weight: normal;
}

body {
    font-family: 'PPSupplyMono', monospace;
}

h1,h2,h3,h4,h5,h6 {
    font-family: 'PPSupplyMono', monospace;
    font-weight: normal;
}

.logo-holder {
    width: 100%;
    text-align: center;
    position: fixed;
    padding-top: 2.5vh;
    z-index: 999;
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}

.logo-spacer {
    height: 100vh;
    --scroll-percentage: 0;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}


img.logo {
    aspect-ratio: 1993 / 1223;
    height: calc( var(--default-height) - (var(--scroll-percentage) * var(--default-height)) );
    min-height: 100px;
    --default-height: 90vh;
    max-width: 95vw;
    object-fit: contain;
    transition: height 100ms linear;
}

section {
    max-width: 1900px;
    width: 90%;
    margin: 0 auto;
    padding-top: 10vh;
    padding-bottom: 10vh;
}


section.updates-holder{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    flex-direction: column;
    text-align: center;
}

input {
    padding: 16px;
}

.bit-nav-bar-container {
    display: none !important;
}

li {}

.social-links > ul > li > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease-in-out;
}

.social-links > ul > li > a:hover {
    opacity: 0.7;
}

.social-links > ul > li > a img {
    height: 24px;
}

.social-links > ul > li > a::before {
    content: '[';
}

.social-links > ul > li > a::after {
    content: ']';
}

.social-links > ul {
    margin-top: 32px;
    flex-wrap: wrap;
    display: flex;
    grid-auto-columns: 2;
    gap: 16px;
    justify-content: center;
    text-transform: uppercase;
}

section.social-holder {
    width: 50%;
    text-align: center;
}

span {}