html {
  cursor: crosshair;
}

body {
  margin: 5% 60%;
}

h1 {
   font-family: Helvetica Neue, Helvetica, Arial Narrow, "Lucida Grande", sans-serif; 
    font-weight: lighter;
    margin: -15% -10% -0.5%;
}

.open {
    letter-spacing: .6em;
  }


p {
   font-family: Helvetica Neue, Helvetica, Arial Narrow, "Lucida Grande", sans-serif; 
    font-weight: lighter;
    margin: 0% 0% 0%;
    }

.cloud {
  animation: fadeIn 12s;
  -webkit-animation: fadeIn 12s;
  -moz-animation: fadeIn 12s;
  -o-animation: fadeIn 12s;
  -ms-animation: fadeIn 12s;
}

.go {
  animation: blinker 8s linear infinite;
  animation-delay: 6s;
}
@keyframes blinker {
  70% {
    opacity: 0;
  }
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@-moz-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@-webkit-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@-o-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@-ms-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.daze {
  animation: blinker 10s linear infinite;
  animation-delay: -4s;
}
@keyframes blinker {
  70% {
    opacity: 0;
  }
}

.dazed {
  animation: blinker 12s linear infinite;
  animation-delay: -6s;
}
@keyframes blinker {
  50% {
    opacity: 0;
  }
}
      
a:link { color: #000000; text-decoration: none; }
a:visited { color: #000000; text-decoration: none; }
a:hover { color: #000000; text-decoration: none; font-style: oblique; cursor: cell; }
a:active { color: #000000; text-decoration: none; }
a:focus {color: #000000; text-decoration: none;}  