*{
	font-family: sans-serif;
}
body{
	padding: 0;
	margin: 0;
	background-size: auto;
	background-repeat: no-repeat;
	background-position-x: center;
	text-align: center;
}
#main{
	color: white;
}
#center{
	position: absolute;
	top: calc(50% + 50px);
	left: 50%;
	transform: translateX(-50%);
}
#tekst{
	position: absolute;
	top: calc(50% + 100px);
	left: calc(50%);
	transform: translateX(-50%);
}
#vinyl-png{
	width: 15em;
	position: absolute;
	top: calc(50% - 13em);
	left: calc(50% - 7.5em);
	animation:spin 20s linear infinite;
}
a:hover{
	text-decoration: none;
}
@keyframes spin{
	100%{
		transform:rotate(-360deg);
	}
}
@media screen and (min-width: 1200px){
	#center{
		width: 33%;
	}
}
@media screen and (max-width: 1199px) {
	#center{
		width: 75%;
	}
}
