@font-face {
    font-family: 'CyberpunkWaifus';
    src: url('assets/fonts/text.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'W95FA';
    src: url('assets/fonts/W95FARegular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow: hidden;
    overflow-y: visible;

    box-sizing: border-box;
    overflow: hidden;

    
  }

  .container {
    display: flex;
    justify-content: center; 
    align-items: center; 
    height: 100vh; 
    text-align: center;
    
    
  }

  .text{
    display: flex;
    justify-content: center; 
    align-items: center; 
    height: 10vh; 
    text-align: center;
    top: -100vh;
  }

  .enter {
        position: absolute;
        font-family: 'CyberpunkWaifus';
        font-weight: 500;
        font-style: normal;
        text-align: center;
        justify-content: center;
        font-size: clamp(16px, 4vw, 30px);;
        bottom:15vh;
        

        
    
  }


  .bitrotload {
    position: relative;
    left: 0.5vb;
    max-width: 70%;
    max-height: 75vh;
    animation: rotate 25s linear infinite; 
}

  @keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}