  @import url('https://fonts.googleapis.com/css2?family=Kdam+Thmor+Pro&family=Silkscreen:wght@400;700&display=swap');
  
  body {
    background: orange;
    font-family: "Silkscreen";
    color: white;
    font-size: 14px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  /* ===== Scrollbar CSS ===== */
  /* Firefox */
  * {
    scrollbar-width: auto;
    scrollbar-color: #ffffff #000000;
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 16px;
  }

  *::-webkit-scrollbar-track {
    background: #000000;
  }

  *::-webkit-scrollbar-thumb {
    background-color: #ffffff;
    border-radius: 10px;
    border: 3px solid #ffffff;
  }
  
  a {
    color: white !important;
  }
  
  a:visited {
    color: white !important;
  }
  
  .crewbox {
    color: black;
    background-color: white;
    text-align: center;
    padding: 5px;
    justify-content: center;
    align-items: center;
  }