  @font-face { font-family: BoxCutter; src: url('boxcu.TTF'); } 
  * {
    text-decoration: none;
  }
  .unselectable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

  a {
    color: white;
    text-decoration: none;
}

  body {
      height: 100%;
      margin: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      font-family: BoxCutter;
      background-color: white;
  }
  #gun {

    opacity: 1;

    

  }

  #muteButton {

    position: fixed;
         bottom: 10px;
         left: 10px;
         opacity: 0;
         z-index: 9999;

  }
  #enterButton {
      padding: 15px 30px;

      display: block;
      margin: 0;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      border: none;
      border-radius: 2px;
      cursor: pointer;
      opacity: 1;
      transition: opacity 1s ease-in-out;
  }
  #enterButton:hover {
      opacity: 0.7;
  }

  #homepageContent {
      color: white;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      opacity: 0;
  }
