@import url(normalize.css);

:root {
  --link-color: #639af2;
}

h1,
h2,
h3 {
  padding: 0;
  margin: 0;
}

h1 {
  font-size: 4em;
  color: #222222;
}

h1 span {
  color: #333333;
}

h1 a:hover {
  text-decoration: none;
}

h2 {
  font-size: 1.25em;
  color: #aaaaaa;
}

h3 {
  font-size: 1em;
  color: #aaaaaa;
}

a {
  /* color: inherit;
  text-decoration: underline; */
  animation: hue 60s infinite linear;
}

a:hover {
  color: var(--link-color);
}

a.poems {
  color: #777777;
}
a:link {
  color: var(--link-color);
  text-decoration: none;
}
a:visited {
  color: var(--link-color);
  text-decoration: none;
}
a:hover {
  color: var(--link-color);
  text-decoration: underline;
}
a:active {
  color: var(--link-color);
}

body {
  font-family: source-sans-pro, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #eeeeee;
  background: #303030;
  -webkit-animation: fadein 1s;
  -moz-animation: fadein 1s;
  -ms-animation: fadein 1s;
  animation: fadein 1s;
}

#container {
  width: 50%;
  margin: 2em auto 2em auto;
  font-size: 1.25rem;
}
#container.poems {
  font-size: 1rem;
}
#container.poems p.cite {
  margin-top: 50px;
}
#container.poems p.cite cite {
  font-size: 0.75rem;
  color: #999999;
}
#container.poems p.cite cite a {
  color: #666666;
}

.me-links {
  font-size: 1.75rem;
  padding: 0;
  margin: 0.5em 0 1em 0;
}
.me-links li {
  list-style: none;
  display: inline;
  letter-spacing: 0.15em;
}

#more {
  margin: 2em;
}

ul {
  padding: 0 0 0 0.5em;
}

li {
  list-style: none;
  margin-bottom: 0.65em;
}

.stable-link-color a {
  animation : none !important;
}

@media only screen and (max-width: 480px) {
  #container {
    width: 90%;
    margin: 0 auto 0 auto;
    font-size: 0.85em;
  }
}

@keyframes hue {
  from {
    filter: hue-rotate(0deg);
  }

  to {
    filter: hue-rotate(-360deg);
  }
}
