body {
    background-color:rgb(14, 14, 14);
  }
  a {
    color: rgb(0, 81, 255);
    text-decoration: none;
    cursor: pointer;
  }
  a:hover {
      color: rgb(0, 162, 255);
      text-decoration: none;
      cursor: pointer;
      text-decoration: underline;
  }
  input {
    color: rgb(255, 255, 255);
    text-decoration: none;
    background-color: rgb(102, 102, 102);
    border-color: rgb(114, 114, 114);
    border-radius: 5px;
  }
  input:hover {
      color: rgb(207, 207, 207);
      text-decoration: none;
  }
  * {
      font-family: arial;
      color: white;
  }
  h1 {
      font-family: monospace;
      color: aquamarine;
  }
  h2 {
    font-family: monospace;
    color: aquamarine;
  }
  button {
    color: rgb(255, 255, 255);
    text-decoration: none;
    background-color: rgb(102, 102, 102);
    border-color: rgb(114, 114, 114);
    border-radius: 5px;
  }
  button:hover {
      color: rgb(207, 207, 207);
      text-decoration: none;
  }