body {
  padding-left: 50px;
  padding-top: 50px;
  font: 14px 'Lucida Grande', Helvetica, Arial, sans-serif;
  color: #000;
}

p.grey {
  color: #111;
}

@media (prefers-color-scheme: dark) {
  body {
    background: #242424;
    color: #fff;
  }
  p.grey {
    color: #bbb;
  }
}

a {
  color: #d50032;
}

p {
  margin: 0;
}

h3,
h4 {
  margin: 0;
}

.background {
  position: fixed;
  bottom: -100px;
  right: -100px;
  filter: grayscale(1) brightness(0.5);
  z-index: -999;
}

@keyframes bganimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes moved {
  0% {
    margin-left: 5px;
  }
  50% {
    margin-left: 2px;
  }
  100% {
    margin-left: 5px;
  }
}

h1 {
  animation: bganimation infinite 1.5s;
  transition: ease-in-out 0.2s;
  background-repeat: no-repeat;
  background-image: linear-gradient(60deg, #d50032, #6aff00);
  background-size: 400%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.desc:after {
  animation: moved infinite 1.5s;
  content: '>';
  font-size: 5px;
}

.desc a {
  text-decoration: none;
  color: #fff;
  transition: ease 0.2s;
}

.desc a:hover {
  color: rgba(238, 238, 238, 0.646);
  transition: ease 0.2s;
}

@media (prefers-color-scheme: light) {
  .desc a {
    color: #111;
  }
  .background {
    filter: brightness(0.5);
  }
}
