body{
  padding: 40px;
  background-color: #00bfa2;
}

@font-face {
  font-family: 'disco';
  src:
  	url('fonts/disco.otf')
  	format('opentype');
}

p {
  font-family: disco;
  font-size: 50px;
  color: white;
  text-align: center;
  margin: 40 auto;
  animation-name: animationzosia1;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}

@keyframes animationzosia1 {
  0%   {color:white;}
  25%  {color:black;}
  50%  {color:white;}
  75%  {color:black;}
  100% {color:white;}
}
