.backgroundColorAnimation {
	-webkit-animation: backgroundColorChange 15s linear 0s infinite alternate;
	animation: backgroundColorChange 15s linear 0s infinite alternate;
	color: white;
}			
@-webkit-keyframes backgroundColorChange {
	0%   {background-color: rgb(83, 144, 52);}
	25%  {background-color: rgb(83, 144, 52);}
	27%  {background-color: rgb(55, 126, 166);}
	75%  {background-color: rgb(55, 126, 166);}
	77%  {background-color: rgb(170, 39, 65);}
	100% {background-color: rgb(170, 39, 65);}
}
@keyframes backgroundColorChange {
	0%   {background-color: rgb(83, 144, 52);}
	25%  {background-color: rgb(83, 144, 52);}
	27%  {background-color: rgb(55, 126, 166);}
	75%  {background-color: rgb(55, 126, 166);}
	77%  {background-color: rgb(170, 39, 65);}
	100% {background-color: rgb(170, 39, 65);}
}

.container {
	max-width: 1000px;
}

.vcenter {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#email a {
	color: white; 
	text-decoration: none;
}

#logo, #phone, #email, #address, #vat {
	background-color: rgb(83, 144, 52);
	color: white;
}
