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

#loader-wrapper {
	background-color: #FFFFFF;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	width: 100%;
	height: 100%;
	text-align: center; 
}

* {
	box-sizing: border-box;
}

body {
	font-family: "Audiowide", sans-serif;	
}

a:link, a:visited, a:hover, a:active {
	color: #FFFFFF;
}

.responsive {
	width: 100%;
	max-width: 531px;
	height: auto;
}
 
.loader {
	width: 40px;
	height: 40px;
	border: 5px solid #000000;
	border-bottom-color: transparent;
	border-radius: 50%;
	margin-top:calc(50vh - 20px);
	display: inline-block;
	box-sizing: border-box;
	-webkit-animation: rotation 1s linear infinite;
	animation: rotation 1s linear infinite; 
}

header {	
	display: flex;
	align-items: center;
	justify-content: center; 
}

main {	
	padding-top: 100px;
	display: flex;
	align-items: center;
	justify-content: center; 
}

footer {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	text-align: center;
}

footer a:link, footer a:visited, footer a:hover, footer a:active {
	color: #000000;
}

div {
  width:20%;  
  display:inline-block;
}
