
@keyframes blink {
  0%, 97%, 100% { opacity: 1; }
  98%, 99% { opacity: 0; }
}

body {
  background: url('raven-background.png') no-repeat center center fixed;
  background-size: cover;
  margin: 0;
  padding: 0;
}

#hrafn-auga {
  position: fixed;
  top: 27%;
  left: 58%;
  width: 10px;
  height: 10px;
  background-color: #1f1a1a;
  border-radius: 50%;
  animation: blink 15s infinite;
  z-index: 9999;
}
