@import url(https://fonts.googleapis.com/css?family=Electrolize);
body {
  margin: 0;
  padding: 0;
 font-family: 'Electrolize';
  font-size: 2em;
  text-transform: ;
  background-color: #000;
  color: hsla(0, 0%, 93%, 1);
  width: 100%;
  overflow: hidden;
	
}

a {
	text-decoration: none;
  color: #fff;
	animation:bur 1s ease-in-out infinite;
	animation-delay: 10s;
}


p {
	left:10px
  color: #fff;
	
	
}

#box {
	display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
	height: 100%;
	
}


@media screen and (max-width: 1000px) {
  body {
    font-size: 2em;
  }
}


@media screen and (max-width: 768px) {
  body {
    font-size: 2em;
  }
}


@keyframes bur
{
	0%,100%,40%,98%
{
	opacity:0.5
}
	41%,97%
{
	opacity:1
}

}