/* Enter CSS here, lallala */
body{
	background:lightblue;
	animation: background 10s infinite;
	width:100%;
	height: 100%;
	position: absolute;
	padding: 0;
	margin:0;
	overflow: hidden;
}
.maxi{
	display: none;
}
.maxi.active{
	display: block;
}
.maxi{
	position: absolute;
	top: 0;
	bottom: 0;
	left: -120%;
	right: 0;
	margin: auto;
	box-shadow: 0 1px 2px rgba(51,51,51,0.3);
	height: 400px;
	text-align: center;
	animation: text 950ms forwards;
	transform: rotate(-15deg);
	border-radius: 200px;
}
@keyframes background{
	0%{
		background: lightblue;
	}
	25%{
		background: orange;
	}
	50%{
		background: violet;
	}
	75%{
		background: darkgrey;
	}
	100%{
		background: lightblue;
	}
}
@keyframes text{
	0%{
		left:-120%;
		transform: rotate(-15deg);
	}
	75%{
		left:10%;
		transform: rotate(5deg);
	}
	100%{
		left:0;
		transform: rotate(0deg);
	}
}