@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: #000000;
}

.responsive {
	width: 100%;
	max-width: 300px;
	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;
}

.grid-container {
	display: grid;
	grid-template-columns: auto auto auto auto auto;
	gap: 10px;
}

.grid-container > div {
	text-align: center;
	font-size: 14px;
}