body {
    background: black;
    cursor: default;
    user-select: none;
}
  
canvas {
    height: 100vh;
    width: 100%;
}

body.fluid-bg {
    position: relative;
}

.content {
    font-family: 'Montserrat', sans-serif;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    opacity: 0;
    animation-delay: 0.3s;
    animation: fadeIn 2s ease-in-out forwards;
    
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 20px 35px 25px;
    border: rgba(130, 130, 130, 0.1) 2px solid;

    cursor: grab;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

#fluid-bg {
    position: absolute;   /* Position the canvas absolutely */
    top: 0;               /* Align to the top */
    left: 0;              /* Align to the left */
    width: 100vw;         /* Full width */
    height: 100vh;        /* Full height */
    z-index: -1;          /* Send it to the back */
    pointer-events: auto; /* Allow mouse events on the canvas */
}

#brx-content {
    position: relative;   /* Set positioning context */
    z-index: 1;           /* Set higher z-index than the canvas */
    pointer-events: auto; /* Allow interactions on content */
    color: #fff;
}

h1 {
    color: #fff;
    font-family: "Space Mono", serif;
    font-size: 45px;
    font-weight: 500;
    font-style: normal;
    cursor: grab;
    margin: 0;
}

h2, .h2 {
    color: #fff;
    font-family: "Space Mono", serif;
    font-size: 15px;
    font-weight: 300;
    font-style: normal;
    cursor: grab;
    margin: 0;
    margin-top: 12px;
    margin-bottom: 5px;
}

h3 {
    color: #3d3d3d;
    animation: blinker 1s linear infinite;
    font-family: "Space Mono", serif;
    font-size: 15px;
    font-weight: 300;
    font-style: normal;
    cursor: grab;
    margin: 0;
    margin-top: 17px;
}

.gray {
    color: #bbb;
}

.gray:hover {
    color: gray;
}

@keyframes blinker {
    50% {
        opacity: 0.3;
    }
}

h1:active, h2:active, .h2:active, h3:active, .content:active {
    cursor: grabbing;
}

h2:hover {
    color: lightgray;
}