  body, html {
      height: 100%;
      margin: 0;
  }

  html {
      user-select: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      -o-user-select: none;
      -ms-user-select: none
  }

  body {
      background-color: #232425;
      font-family: Open Sans, Arial;
      color: #ffffff;
      text-align: center;
      font-size: 14px;
      font-weight: 500;
      text-shadow: 0px 0px 8px #000000
  }

  * {
      margin: 0;
      padding: 0;
  }

  *:focus {
      outline: 0 !important
  }

  ::-webkit-scrollbar {
      display: none
  }

  ::-moz-scrollbar {
      display: none
  }

  ::-o-scrollbar {
      display: none
  }

  ::-ms-scrollbar {
      display: none
  }

  .iconify {
      -webkit-filter: drop-shadow(0px 0px 8px #000000);
      filter: drop-shadow(0px 0px 8px #000000);
  }

  a {
      color: #ffffff;
      text-decoration: none;
      cursor: pointer;
      font-weight: 700
  }

  h1 {
      font-family: Open Sans, Arial;
      color: #ffffff;
      font-size: 26px
  }

  .left-top {
      left: 50%;
      top: 60%;
      position: absolute;
      transform: translate(-50%, -50%)
  }

  .right-top {
      right: 1.5%;
      top: 2.5%;
      position: absolute;
      text-align: right
  }

  .middle {
      top: 50%;
      left: 50%;
      position: absolute;
      transform: translate(-50%, -50%)
  }

  .right-bottom {
      right: 1.5%;
      bottom: 2.5%;
      position: absolute;
      text-align: right
  }

  .left-bottom {
      left: 1.5%;
      bottom: 2.5%;
      position: absolute;
      text-align: left
  }

  @media only screen and (max-width:620px) {
      .left-top a .right-top .middle .right-bottom .left-bottom {
          width: 100%;
      }
  }