html {
    user-select: none;
}

a {
    color: #fff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

body {
  background: #000000;
  display: flex;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 20px;
  justify-content: center;
  align-items: center;
  color: #ffffff;
}

.loader {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

#right-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
}

#footer {
  position: fixed;
  bottom: 15;
  justify-content: space-around;
  align-items: center;
  font-size: 15px;
  display: flex;
  height: 30px;
}

#footer img {
  height: 30px;
}

@media only screen and (max-width: 768px) {
    /* For mobile phones: */
    body {
      display: flex;
      flex-direction: column;
      font-size: 26px;
    }

    .loader img {
      width: 80%;
    }

    #right-bottom {
      width: 10%;
    }

    #footer img {
      height: 40px;
      z-index: 1;
    }

}
