@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway&display=swap');

body {
  background-color: #222;
  color: #eee;
  font-family: 'VT323', monospace;
  font-size: 24px;
  line-height: 1.5;
  text-align: left;
  padding: 80px;
  border: 35px solid transparent;
  animation-name: border-color;
  border-radius: 10px;
  animation-duration: 30s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: linear;
}

.content {
  margin-bottom: 40px;
}

h2, h3 {
  font-family: 'VT323', monospace;
  text-align: center;
  font-size: 35px;
  margin-top: 0;
}

p {
  font-family: 'VT323', monospace;
  margin-top: 10px;
}

.colophon {
  text-align: center;
  margin-top: -20px;
}

img.colophon {
  display: inline-block;
  margin: 0 auto;
  max-width: 14%;
  vertical-align: middle;
}

@keyframes border-color {
  0% {
    border-color: red;
  }
  25% {
    border-color: orange;
  }
  50% {
    border-color: purple;
  }
  75% {
    border-color: orange;
  }
  100% {
    border-color: red;
  }
}

a:link {
  color: lightgreen;
}

a:visited {
  color: limegreen;
}

@media (min-width: 768px) {
  body {
    padding: 120px;
  }
}
