html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
    background-color: #000000;
	  touch-action: none;
	-ms-touch-action: none;
	-webkit-touch-callout: none;
	-webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none;
            font-family: myfont2, sans-serif;
  }
  
  img{
	pointer-events:none;  
  }
  
  #ghost{
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
    width: 100vw;
    height: 100vh;
  }

  #ghost img{
    width: 100%;
    height: 100%;
  }

  .cfp{
    position: absolute;
    display: block;
    z-index: 50;
    width: 100%;
    bottom: 0;
    height: 20vh;
    padding-top: 1vh;
    padding-bottom: 1vh;
    font-size: 7vw;
    background-color: #69966a;
    color: white;
    text-align: center;
    cursor: pointer;
    left:0;
  }

  .cfp:hover{
    filter: brightness(125%);
  }

  #moregames{
    position: absolute;
    width: 15vw;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .game{
    display: inline-block;
    width: auto;
    height: 16vh;
    margin-left: 0.25vw !important;
    margin-right: 0.25vw !important;
    cursor: pointer;
  }

  .game img{
    width: 100%;
    height: 100%;
    border-radius: 5px;
    transition: filter 0.2s;
  }

  .game img:hover{
    filter: brightness(125%);
  }


  button {
      background-color: #4fb74c;
      color: white;
      padding: 10px 20px;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      font-size: 12px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      transition: 0.2s;
  }
