@import url('/fonts/outfit.css');

html, body{
	width: 100%;
	height: 100%;
	padding: 0px;
	margin: 0px;
	text-align: center;
	font-family: 'Outfit';
	color: #EBC581;
	font-size: 18px;	
	background-color: #fff;
	background-image: url('/background.jpg');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;	
	display: flex;
	align-items: center;
	justify-content: center;	
}

a {
	color: #EBC581;
	text-decoration: none;
}

.center {
	padding: 40px;
	display: flex;
	align-items: center;
	justify-content: center;	
	flex-direction: column;
	gap: 20vh;
}

.center img {
	max-width: 300px;
}

.slogan {
	font-size: 70px;
	line-height: 70px;
}

@media (max-width: 800px){

	html, body{
		font-size: 16px;
	}

	.center {
		padding: 20px;
	}

	.center img {
		max-width: 240px;
	}

	.slogan {
		font-size: 50px;
		line-height: 50px;
	}

}

@media (max-height: 800px){
	.center {
		gap: 10vh;
	}	
}

@media (max-height: 600px){
	html, body{
		font-size: 16px;
	}

	.center {
		padding: 20px;
	}

	.center img {
		max-width: 240px;
	}

	.slogan {
		font-size: 50px;
		line-height: 50px;
	}
}