/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: black;
  color: #49ff33;
  font-family: 'Courier New', monospace;
}

a:link {
  color: #49ff33;
  background-color: transparent;
  text-decoration: underline;
}

a:visited {
  color: #49ff33;
  background-color: transparent;
  text-decoration: underline;
}

a:hover {
  color: #49ff33;
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: #49ff33;
  background-color: transparent;
  text-decoration: underline;
}
.divoutrun {
  margin: auto;
  width: 640px;
  height: 480px;
  background-image: url("outrun2019.gif");
  }
  
  .divcool {
  border-style: double;  
    margin: auto;
        width: 640px;
    }
    
     .divlewd {
  border-style: double;  
  border-color: red;
    margin: auto;
        width: 640px;
    }
    
     .divstreamer {
  border-style: double;
  border-color: purple;
    margin: auto;
    width: 640px;
    
    }
  
  .blinky1 {
        animation: blink-animation 2s steps(2, start) infinite;
        -webkit-animation: blink-animation 2s steps(2, start) infinite;
      }
      @keyframes blink-animation {
        to {
          visibility: hidden;
        }
      }
      @-webkit-keyframes blink-animation {
        to {
          visibility: hidden;
        }
      }
   .blinky2 {
        animation: blink-animation 1s steps(1, start) infinite;
        -webkit-animation: blink-animation 1s steps(1, start) infinite;
      }
      @keyframes blink-animation {
        to {
          visibility: hidden;
        }
      }
      @-webkit-keyframes blink-animation {
        to {
          visibility: hidden;
        }
      }
  
  
  
   .blinky3 {
        animation: blink-animation 1s steps(1, start) infinite;
        -webkit-animation: blink-animation 1s steps(1, start) infinite;
      }
      @keyframes blink-animation {
        to {
          visibility: hidden;
        }
      }
      @-webkit-keyframes blink-animation {
        to {
          visibility: hidden;
        }
      }
  
  
  
  
  
  
  