a:link,
a:visited {
  color: black;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}

a:hover {
  background-color: white;
  color: black;
}

body {
  text-align: left;
  margin-bottom: 100px;
  background-color: white;
  transition: background-color 0.5s ease-in-out;
  font-family: 'Courier New', Courier, monospace;
}

.footer-container {
  position: absolute;
  bottom: 7%;
  left: 25%;
  padding: 0 0 20px 20px;
  text-align: right;
}

.footer-container a {
  display: block;
  margin: 0 10px 0 0;
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.animated-link:hover {
  color: blue;
}

.footer-container a:hover {
  color: white;
  background-color: inherit;
  transition: all 0.5s ease-in-out;
}

.blog {
  position: absolute;
  top: 7%;
  left: 35%;
  padding-right: 15%;
}

.blog a {
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
}

.blog a:hover {
  color: white;
  background-color: inherit;
  transition: all 0.5s ease-in-out;
}