body {
    margin: 0;
    padding: 0;
    height: 300vh;
    background-color: black; /*IMPORTANT - MAKE SURE TO FIX INVISIBLE VIDEO WITH NOTIF TO REFRESH*/
}
canvas {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: auto;
    max-height: 100vh;
    width: 100vw;
}
.background {
    z-index: -1;
}
.foreground {
    z-index: 9999;
}
.navBarContainer {
    margin-top: 0px;
    width: 100%;
    height: 80px;
    flex-direction: row;
    display: flex;
}
.bodyContainer {
    margin-top: 0px;
    width: 100%;
    height: 100%;
}
.footer {
    height: 40px;
    width: 100%;
    background-color: rgb(27, 27, 27);
    display: flex;
}
.footerButton {
    margin-top: auto;
    margin-bottom: auto;
    height: min-content;
    width: max-content;
    color: white;
    background-color: rgb(27, 27, 27);
    border: 0;
    font-family: "Darker_Grotesque";
    font-size: 17.5px;
    margin-left: 20px;
}
.copyrightText {
    margin-right: 20px;
    margin-left: auto;
    margin-top: auto;
    margin-bottom: auto;
    height: min-content;
    width: max-content;
    color: white;
    font-family: "Darker_Grotesque";
    font-size: 17.5px;
}
.title{
    display: block;
    margin-top: 30vh;
    margin-left: auto;
    margin-right: auto;
    height: auto;
    width: 40%;
    user-select: none;
}
.arrow {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    height: 30px;
    width: auto;
    animation: moveUpDown 1s infinite alternate;
}
.scrolled {
    display: none;
}
.brandContainer {
    flex: 0;
    height: 100%;
    width: 100%;
    flex-direction: row;
    display: flex;
    align-items: center;
    justify-items: center;
}
.navContainer {
    flex: 1;
    height: 100%;
    width: auto;
    flex-direction: row-reverse;
    display: flex;
    align-items: center;
    justify-items: center;
}
.logo {
    margin-left: 30px;
    height: 30%;
    width: auto;
    user-select: none;
}
.logoTitle {
    margin-left: 15px;
    height: 25%;
    width: auto;
    user-select: none;
}
.navItemMain {
    margin-right: 30px;
    height: 50%;
    width: 100px;
    border-radius: 20px;
    background-color: black;
    border: 1px solid white;
    color: white;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    font-family: "Darker_Grotesque";
    font-size: 17.5px;
}
.navItemMain:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}
.navItemSecondary {
    margin-right: 20px;
    height: 50%;
    width: 80px;
    border-radius: 20px;
    background-color: black;
    color: white;
    cursor: pointer;
    border: 0;
    font-family: "Darker_Grotesque";
    font-size: 17.5px;
}
button:hover {
    color: gray;
}
.info1Title {
    height: 100px;
    width: 100px;
    color: white;
    display: block;
    margin-top: 600px;
    margin-left: 60%;
    margin-right: 40%;
    font-size: 100px;
    font-family: "Darker_Grotesque";
}
.info2Title {
    height: 100px;
    width: 100px;
    color: white;
    display: block;
    margin-top: 1000px;
    margin-left: 60%;
    margin-right: 40%;
    font-size: 100px;
    font-family: "Darker_Grotesque";
}
.info1Info {
    height: 100px;
    width: 30%;
    color: white;
    display: block;
    margin-top: 40px;
    margin-left: 60%;
    margin-right: 40%;
    font-size: 30px;
    font-family: "Darker_Grotesque";
}
.cursor {
    position: absolute;
    width: 0px;
    height: 0px;
    background-color: transparent;
    border-radius: 100%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 300px 75px rgba(255, 255, 255, 0.4);
}
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    font-size: 20px;
    color: #333;
}
.loadingText {
    color: white;
    font-family: "Darker_Grotesque";
    margin-right: 10px;
}
.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes moveUpDown {
    0% {
      transform: translateX(-50%) translateY(10);
    }
    100% {
      transform: translateX(-50%) translateY(-20px);
    }
}
@font-face {
    font-family: 'Darker_Grotesque';
    src: url('./assets/Darker_Grotesque/DarkerGrotesque-VariableFont_wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}
::-webkit-scrollbar-track {
    background: black;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: white;
    border-radius: 10px;
    border: 3px solid black;
}
::-webkit-scrollbar-thumb:hover {
    background: #555;
}
::-webkit-scrollbar-corner {
    background: #f1f1f1;
}