body{
	background: linear-gradient(0.25turn,#e66465, #d68813);
}

.content{
	position: absolute;
	top: 50%;
	left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.logo{
	text-align: center;
}
.logo img{
	max-width:90%;
	width: 500px;
	animation: fadeIn 5s;
	-webkit-animation: fadeIn 5s;
	-moz-animation: fadeIn 5s;
	-o-animation: fadeIn 5s;
	-ms-animation: fadeIn 5s;
	margin-bottom: 10%;
}
.inProgress{
	text-align: center;
	color:white;
	font-size: 24pt;
	margin-top:5%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.inProgress > span {
	margin-left:0.5rem;
	margin-right:0.5rem;
  //animation: bouncing 0.6s infinite alternate;
}

.inProgress > span:nth-child(2) {
  animation-delay: 0.2s;
}

.inProgress > span:nth-child(3) {
  animation-delay: 0.4s;
}

.inProgress > span:nth-child(4) {
  animation-delay: 0.6s;
}

@keyframes bouncing {
  from {
    transform: translate3d(0);
  }
  to {
    transform: translate3d(0, -1rem, 0);
  }
}


@keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-moz-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-webkit-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-o-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-ms-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}


