body{
	background-color: #e45c4c;
}
a{
	color: white;
}
.bglight{
	background-color: #e45c4c;
}
.bgdark{
	background-color: #c63f34;
}
#heading{
	text-align: center;
	font-size: 75pt;
	font-family: mostra-nuova, sans-serif;
	font-weight: 400;
	font-style: normal;
	color: white;
}
#about, #contacts{

	font-family: acumin-variable, sans-serif;
	font-variation-settings: "slnt" 0, "wdth" 60, "wght" 300;
	font-size: 20pt;
	color: white;
}
.bold{
	font-variation-settings: "slnt" 0, "wdth" 60, "wght" 400;
}
.left{
	text-align: center;
}
.right{
	text-align: center;
}
#contact-heading{
	font-size: ;
}
@keyframes fadein{
	0%{opacity: 0%;}
	100%{opacity: 100%;}
}
#header{
	animation-name: fadein;
	animation-duration: 0.5s;
}
#about{
	opacity: 0%;
	animation-name: fadein;
	animation-delay: 0.1s;
	animation-duration: 0.5s;
	animation-fill-mode: forwards;
}
#contacts{
	opacity: 0%;
	animation-name: fadein;
	animation-delay: 0.2s;
	animation-duration: 0.5s;
	animation-fill-mode: forwards;
}

@media only screen and (min-width: 960px){
	#heading{
		text-align: center;
		font-size: 120pt;
		font-family: mostra-nuova, sans-serif;
		font-weight: 400;
		font-style: normal;
		color: white;
	}
	.left{
		text-align: left;
	}
	.right{
		text-align: right;
	}
}