body {
    color:aliceblue;
    font-family: Georgia, Garamond, serif;
    cursor: url(/cursor.cur), auto;
    font-size: 1.1rem;
  }
.spin {
    transition: 3s;
  }
  .spin:hover {
    transform: rotate(720deg);
  }

h1, h2, h3 {
  margin-top: 0.2em;
  margin-bottom: 0.2em;
  margin-left: 0;
  margin-right: 0;
}

h2 {
    color: #FED766;
}

a {
    position: relative;
    display: inline-block;
    transition: opacity 0.25s;
    color:#FED766;
  }
  a:visited {
    color: gold;
    text-decoration: none;
  }
  a:visited:hover {
    color: orange;
  }