body {
  background-color: black;
  color: white;
  font-family: Fright;
  width: 40%;
  margin-left: auto;
  margin-right: auto;
}

.text{
  text-align: center;
  animation: down;
  animation-delay:0.5s;
  animation-duration: 5s;
}

h3 {
  font-weight: bold;
  color:#eb1773;
}

a{
  color:white;
  text-decoration: none;
}

a:hover{
  color:#b86592;
}

@keyframes down {
  from {transform: 0px -10%;}
  to {transform: 0px 100%;}
}