button:hover {
  color: lightskyblue;
  transition: 0.3s ease;
  box-shadow:0 12px lightskyblue;
  border: solid 1px lightskyblue;
}
h1{
  color: aliceblue;
  font-size: xxx-large;
  font-family: Georgia, 'Times New Roman', Times, serif;
}
button{
  margin-top: 50%;
  background-color: black;
  color: aliceblue;
  font-size: xx-large;
  padding: 10px 20px 10px 20px;
  font-family: Helvetica;
  box-shadow:0 12px  aliceblue;
  transition: all 0.001s ease;
  border-radius: 10px;
}

button:active{
  box-shadow:0 6px blue;
  border: solid 1px blue;
  color: blue;
  transform:translateY(10px);
}
body{
  text-align: center;
  background-color: black;
}
p{
  display: inline-block;
  margin-top: 555px;
  margin-left: 90%;
  font-size: xx-small;
  color: aliceblue ;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  animation: float 3s ease-in-out infinite;
}
p:hover{transition:delay: ;
  font-size: xxx-large;
  margin-top: 530px ;
  margin-left: 0;
}
h2{
  color: aliceblue ;
}
h2{
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
@keyframes float {
  0% {
    transform: translateY(0px); 
    color: blue;
  }
  50% {
    transform: translateY(-7px);
    color: lightskyblue;
  }
  100% {
    transform: translateY(0px);
    color : blue;
  }
}
#cursorAlien {
  position: fixed;
  pointer-events: none;
  transform-origin: center;
  transition: transform 0.1s ease;
  animation: float 3s ease-in-out infinite;
  font-size: x-large;
  filter:
    drop-shadow(0 0 4px lightskyblue);
    drop-shadow(0 0 8px blue);
}
