/*

DART 450, Winter 2018
Midterm Project
Gavin Park

Some description of the CSS styling

*/

html, body {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

#revisit {
  position: absolute;
  width: 20%;
  height: auto;
  bottom: 20px;
}

#revisit:hover {
    -webkit-animation-name: rotate;
    -webkit-animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
}
@-webkit-keyframes rotate {
    from {-webkit-transform: rotate(0deg);}
    to {-webkit-transform: rotate(360deg);}
}

h1 {
  top: 700px;
  padding-left: 30px;
  padding-right: 30px;
  color: antiquewhite;
  font-size: 80px;
  font-family: arial;
}
