@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Poppins", sans-serif;
}

.container {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	height: 100vh;
	width: 100%;
	overflow: hidden;
}
.container .image {
	position: absolute;
	height: 100%;
	width: 100%;
	object-fit: cover;
	z-index: -1;
}
.container .spacer {
	height: 40%;
}

.logo {
	display: block;
	/* margin: auto; */
	/* position: absolute; */
	/* position:fixed; */
	height: 313px;
	width: 506px;
	object-fit: contain;
	object-position: bottom;
	z-index: -1;
}
.container header {
	font-size: 3em;
	color: rgb(255, 150, 70);
	font-weight: 600;
	text-align: center;
}
.container p {
	font-size: 1.2em;
	color: rgb(0, 120, 100);
	font-weight: 400;
	max-width: 500px;
	text-align: center;
}

a {
	color: rgb(0, 120, 100);
}