@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap');
body{
  font-family: "Archivo", Arial, Serif;
  text-align: center;
  background-image: url('particulate.png'), url('gradiented.png'), url('shadow.png');
  background-size: cover, cover;
  background-position: center -50px, center;
  background-repeat: repeat, no-repeat;
  background-attachment: scroll, fixed;
  animation: move 200s ease-in infinite alternate-reverse;
  color: white;
}

h1{
  font-size: 40px;
}
p{
  font-size: 30px; 
  text-shadow: 1px 1px 2px black
}
a{
  text-decoration: none;
  color: #FFFFFF;
  font-size: 30px;
}
a:hover{
  color: #FFFF00;
}
img{
  max-width: 100%;
  max-height: 100%;
  margin-top: 20px;
  box-shadow: 0 0 30px rgb(255, 255, 255);
  border-radius: 15px;
}

b {
  text-shadow: 2px 2px 5px white;
}

@keyframes move {
  0% {
    background-position: center 800px, center;
  }
  50% {
    background-position: center -150px, center;
  }
  100% {
    background-position: center 800px, center;
  }
}