* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'SairaExtraCondensed', Arial, Helvetica, sans-serif;
	color: #3C3C3C;
}

.container {
	width: 100%;
	height: 100vh;
	min-height: 400px;
	padding: 0 50px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

h1 {
	width: 100%;
	max-width: 476px;
	text-align: center;
	font-size: 70px;
	line-height: 70px;
	font-weight: 900;
	color: #0055B7;
}

p {
	width: 100%;
	margin-top: 30px;
	text-align: center;
	font-size: 30px;
	line-height: 38px;
	font-weight: 400;
	color: #3C3C3C ;
	font-family: 'DINPro', Arial, Helvetica, sans-serif;
}

span {
	display: block;
}

.color-green {
	color: #7EBA39;
	font-weight: 900;
	font-size: 40px;
	line-height: 40px;
	font-family: 'SairaExtraCondensed', Arial, Helvetica, sans-serif;
}

@media screen and (max-width: 768px) {
	.container img {
		width: 255px;
	}

	h1 {
		font-size: 54px;
		line-height: 54px;
	}

	p {
		margin-top: 22px;
		font-size: 24px;
		line-height: 30px;
	}

	span {
		display: inline;
	}

	.color-green {
		font-size: 35px;
		line-height: 35px;
	}
}

@media screen and (max-width: 425px) {
	.container img {
		width: 185px;
	}

	h1 {
		font-size: 39px;
		line-height: 39px;
	}

	p {
		margin-top: 16px;
		font-size: 18px;
		line-height: 23px;
	}

	.color-green {
		font-size: 30px;
		line-height: 30px;
	}
}

@font-face {
	font-family: 'DINPro';
	font-style: normal;
	font-display: swap;
	src: url('./fonts/DINPro.otf');
}

@font-face {
	font-family: 'SairaExtraCondensed';
	font-style: normal;
	font-display: swap;
	src: url('./fonts/SairaExtraCondensed-ExtraBold.ttf');
}
