body {
	background-color:rgb(187,37,39);
	font-family: 'Roboto Condensed', sans-serif;
	color:rgb(255,255,255);
	overflow: hidden;
}

h1 {
	text-align:center;
	color:rgb(255,255,255);
	font-size:36px;
}

h2 {
	text-align:center;
	color:rgb(255,255,255);
	font-size:144px;
}

.pictureContainer{
	position: fixed;
	left: 0;
	right: 0;
	top: 30%;
	bottom: 1%;
	text-align: center;
}

.pictureContainer2{
	position: absolute;
	left: 0;
	right: 0;
	top: 15%;
	bottom: 10%;
	text-align: center;
}


.main{
	display:flex;
	justify-content:center;
	text-align: center;
	align-items:center;
	font-size:36px;
	height: 30%;
	animation: spin 5s infinite linear;
}

@keyframes spin {
	0%  {transform: rotate(0deg);}
	100% {transform: rotate(360deg);}	
}

.pictureMain{
	max-width: 100%;
	max-height: 100%;
}

a:link, a:visited {
  	color:rgb(255,255,255);
 	text-decoration: none;
}

	
a:hover, a:active {
  	color:rgb(225,225,225);
 	text-decoration: none;
}