body {
  color: yellow;
  font-size:1.3em;
  background:url('plaid.png');
}

img {
  width:55%;
  border:1px solid yellow;
}

p {
  margin:1em auto;
  text-align:center;
}

a {
  color: yellow; 
}

a:hover {
  color:red; 
}

.geoHead {
  text-align:center;
  font-family:'Comic Sans MS';
  font-size:2em;
  color:yellow;
}

.blink {
  animation: blink-animation 1s steps(5, start) infinite;
  -webkit-animation: blink-animation 1s steps(5, start) infinite;
  }
  @keyframes blink-animation {
    to {
      visibility: hidden;
      }
  }
  @-webkit-keyframes blink-animation {
    to {
      visibility: hidden;
    }
  }