body {
  background-image: url('dither2.png');
  background-repeat: no-repeat;
  background-position: 50% 30%;
  background-size: 300% 300%;
  background-color: black;
  background-attachment: fixed;
}

h1 {
  font-family: times new roman;
  font-size: 300%;
  scroll-margin-top: 50px;
  color: #54c472;
}

p1 {
  font-size: 150%;
  scroll-margin-top: 50px;
  display: block;
}

.tiny5-regular {
  font-family: "Tiny5", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.para1 {
  text-align: center;
  display: block;
  font-family: "Tiny5";
  color: white;
}

ul {
  list-style-type: none;
  font-size: small;
  margin: 0;
  padding: 0;
}

a {
  color: aqua;
  text-decoration: none;
}

a:hover {
  color: blue;
  text-decoration: none;
}

div {
  width: 20%;
  height: auto;
  padding: 20px;
  border: 2px solid white;
  margin: auto;
  margin-top: 10px;
  background-color: black;
}

span {
  background: transparent;
  color: white;
  padding: 0.5rem;
  display: inline-block;
}

span.vertical-shake {
  animation: vertical-shaking 0.65s alternate infinite;
}

@keyframes vertical-shaking {
  0% { transform: translateY(0); color: gray } 
  20% { transform: translateY(1px); color: darkslategrey } 
  25% { transform: translateY(-2px); color: white }
  50% { transform: translateY(0) translateX(-1px) } 
  70% { transform: translateY(0); color: lightgray }
  72% { transform: translateY(1px) translateX(0); color: white } 
  90% { transform: translateY(0); color: white }
  98% { transform: translateY(-1) translateX(1); color: darkslategrey}
  100% { transform: translatey(0) translateX(0); color: white }
}

@keyframes spin {
  from { transform: rotate(0deg) }
  to { transform: rotate(360deg) }
}

@keyframes spin2 {
  from { transform: rotate(360deg) }
  to { transform: rotate(0deg) }
}

.spin { 
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2vh;
  padding: 30px;
  animation: spin 20s linear infinite; 
}

.spin2 { 
  display: block;
  margin-left: 40%; 
  margin-right: 30%;
  width: 7vh;
  height: auto;
  padding: 10px;
  animation: spin 40s linear infinite; 
}

.spin3 {
  display: block;
  margin-left: 10%;
  margin-right: 30%;
  margin-top: -20%;
  width: 20vh;
  height: auto;
  padding: 5px;
  animation: spin2 27s linear infinite;
}

.spin4 {
  display: block;
  margin-left: 80%;
  margin-right: 10%;
  margin-top: -05%;
  width: 25vh;
  height: auto;
  padding: 0;
  animation: spin 33s linear infinite;
}

