@import url('https://fonts.googleapis.com/css?family=Bungee&display=swap');
@import url('https://fonts.googleapis.com/css?family=Montserrat&display=swap');

body {
    margin: 0;
    background-color: #000;
    color: #fff;
    font-family: Montserrat;
    font-size: 14px;
    line-height: 24px;
    overscroll-behavior: none;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh; /* Make the body fill the entire viewport height */
}

a {
    color: #ff0;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

#button-container {
    position: absolute;
    bottom: 70px; /* Adjust the distance from the bottom as needed */
    width: 100%;
    text-align: center; /* Center the button horizontally */
}


button {
    background-color: #ffffff;
    border-radius: 26px;
    border: 2px solid #050505;
    display: inline-block;
    cursor: pointer;
    color: #0a0a0a;
    font-family: Bungee;
    font-size: 12px;
    font-weight: bold;
    padding: 16px 31px;
    text-decoration: none;
}

button:hover {
    background-color: #ededed;
}

button:active {
    position: relative;
    top: 1px;
}

#logo-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 20px; /* Adjust as needed */
    background-color: rgba(0, 0, 0, 0); /* Fully transparent background */
    z-index: 1; /* Make sure it's above the WebGL canvas */
}

#logo {
    max-width: 50%; /* Ensure the logo doesn't exceed the container */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Remove extra space below inline elements */
    margin: 0 auto; /* Center the logo within the container */
}
