html {
cursor: crosshair;
}

p {
    margin: 0%, 30%;
    font-family: Helvetica Neue, Helvetica, Arial Narrow, "Lucida Grande", sans-serif; 
    font-weight: lighter;
    font-size: large;
    }
    
    .open {
      letter-spacing: .6em;
      margin: 10% 5% 30%;
    }
  
    .enter {
      animation: blinker 2s linear 1;
      animation-delay: -1.5s;
    }
    @keyframes blinker {
      50% {
        opacity: 0;
      }
    }

    .go {
      animation: blinker 2s linear infinite;
      animation-delay: 4s;
    }
    @keyframes blinker {
      70% {
        opacity: 0;
      }
    }
      
    a:link { color: #000000; text-decoration: none; }
    a:visited { color: #000000; text-decoration: none; }
    a:hover { color: #000000; text-decoration: none; cursor: cell; }
    a:active { color: #000000; text-decoration: none; cursor: cell; }
    a:focus {color: #000000; text-decoration: none;}  