
.button {
  border: none;
  color: black;
  text-align: center;
  display: inline-block;
  font-size: 38px;
  margin: 4px 2px;
  cursor: pointer;
  font-family: "Quicksand", sans-serif;

}

.button1 {background-color: #d8dbf2;}

.button1:hover {
  background-color: #abadd4;
  transition-duration: 0.4s;
}

body{
  background-color: 
    #f2f5ff;
}

p {
  font-size: 28px;
  font-family: "Quicksand", sans-serif;
}

h1 {
  font-family: "Sofia", sans-serif;
  text-shadow: 2px 2px 8px #C1C1C1;
}

h2 {
  font-family: "Quicksand", sans-serif;
}

ul li {font-family: "Quicksand", sans-serif;}

div {
  width: 100px;
  height: 100px;
  color: blue;
  position: absolute;
  top: -1005px;
  animation-name: example;
  animation-duration: 7s;
  animation-iteration-count: infinite;
}

@keyframes example {
  0%   { color:#78C1F7; left:0px; top:-70px;}
  50%  { color:#8278F7; left:60%; top:-70px;}
  100% { color:#1FD0B0;left:0px; top:-70px;}
}
