@import url('https://fonts.googleapis.com/css2?family=Cutive+Mono&display=swap');
body{
    background-image: linear-gradient(rgb(255, 255, 255),rgb(255, 255, 255));
    background-repeat: no-repeat;
    font-family: 'Cutive Mono', monospace;
    }

.bb {
    background-color: black;
    color: white;
    display:inline-block;
}

a:link {
    color: white;
    background-color: black;
    text-decoration: none;
  }
  
  a:visited {
    color: rgb(255, 220, 226);
    background-color: black;
    text-decoration: none;
  }
  
  a:hover {
      text-decoration:none;
      animation: rainbow 3s linear infinite both;
  }
  
  @keyframes rainbow {
      0% {
        color: #1ff0ff;
      }
      25% {
        color: #b22cff;
      }
      50% {
        color: #ff2626;
      }
      75% {
        color: #ffc812;
      }
      100% {
        color: #52ff1d;
      }
    }
