@import resetter.css;
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;600&display=swap');
 
body, html {
	background-color: #222222;
	height: 100%;
	color: #fff;
	font-family: "Poppins", helvetica, arial, sans-serif;
	line-height: 1.4;
}
a {
	text-decoration: none;
	color: inherit;
}
.content {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	height: 100vh;
	overflow: hidden;
}
.content img {
	width: 350px;
	height: auto;
	margin-bottom: 32px;
}
.content span {
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 200;
	letter-spacing: .05em;
}
.content .data address {
	position: absolute;
	bottom: 40px;
	left: 0;
	width: 100vw;
	font-weight: 300;
	font-style: normal;
	text-align: center;
	font-size: 14px;
}

@media screen and (max-width: 414px) {
	.content img {
		width: 250px;
		margin-bottom: 16px;
		transform: translateY(-10vh);
	}
	.content span {
		font-size: 12px;
		transform: translateY(-10vh);
	}
	.content .data address {
		font-size: 12px;
	}
}