html, body {
  background-color:#222;
  text-align:center;
  color:white;
  margin:0;
  padding-top:10px;
  font-family: Consolas;
}


body {
  animation: fadeInAnimation ease 0.25s;
     animation-iteration-count: 1;
    animation-fill-mode: forwards;
    }
    @keyframes fadeInAnimation {
      0% {
         opacity: 0;
      }
      100% {
         opacity: 1;
      }
}

a
{
  color:white;
}

ul{
  text-align: left;
  max-width: 70ch;
}

img {
  margin: 30px;
  box-shadow: 0 0 10px white;
}

.noborder {
  box-shadow: 0 0 0px white;
}