body {
	background-color: black;
	color: white;
	font-family: Arial, sans-serif;
}

.container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100vh;
}

.container h1 {
	max-width: 800px;
	font-size: 30px;
	line-height: 1.6em;
	margin-top: 50px;
}

.logo {
	max-width: 260px;
	max-height: 50%;
	padding-bottom: 20px;
}

.text {
	text-align: center;
	margin-top: 20px;
	max-width: 800px;
	font-size: 18px;
	line-height: 1.6em;
	padding-bottom: 20px;
	text-align: justify;
	text-justify: inter-word;
}

.footer {
	position: absolute;
	bottom: 0;
	text-align: center;
	padding-top: 30px;
	width: 100%;
	box-sizing: border-box;
}

.footer a {
	color: #dcdcdc;
}

.footer a:hover, .footer a:active {
	color: #fff;
}

.contact-btn {
	display: inline-block;
	padding: 10px 20px;
	border-radius: 5px;
	border: 2px solid white;
	background-color: black;
	color: white;
	font-size: 16px;
	text-decoration: none;
	text-align: center;
	cursor: pointer;
	transition: all 0.2s ease-in-out;
}

.contact-btn:hover {
	background-color: white;
	color: black;
}

/* Media queries for smartphones */
@media only screen and (max-width: 800px) {
	.container {
		padding: 20px;
		display: block;
		flex-direction: unset;
		height: auto;
		padding: 20px;
		text-align: center;
	}

	.logo {
		width: 280px;
		max-height: unset;
		margin: 0 auto;
		padding: 50px 0 35px 0;
	}

	.container h1 {
		font-size: 24px;
		margin-top: 30px;
		text-align: left;
		padding-bottom: 25px;
		
	}

	.text {
		margin-top: 10px;
		font-size: 16px;
		padding-bottom: 50px;
	}

	.footer {
		position: static;
		margin-top: 20px;
		padding: 10px;
	}
}