@font-face {
    font-family: brandon light;
    src: url(../font.woff2) format('woff2');
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
}

html, body {
    height: 100%;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    font-family: Calibri, sans-serif;
}
.hint {
    z-index: 2;
    color: #ffffff;
    position: fixed;
    bottom: 15%; /* Adjusted for visibility */
    left: 50%;
    transform: translateX(-50%);
    font-family: brandon light, sans-serif;
    font-size: 2vmin;
    font-weight: 700;
    cursor: pointer;
    padding: 0.5em 1em;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    text-align: center;
    mix-blend-mode: overlay;
  }
  
  .fallback-image {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    filter: brightness(75%);
  }
  
  
