* {

	margin: 0;

	padding: 0;

	box-sizing: border-box;

}



html {

	overflow-x: hidden;

}



body {

	font-family: 'Poppins', sans-serif;

	overflow-x: hidden;

	font-weight: 400;

	color: #282727;

}



a {

	text-decoration: none;

	-moz-transition: all .3s ease-in-out;

	-webkit-transition: all .3s ease-in-out;

	transition: all .3s ease-in-out;

}



a:hover {

	text-decoration: none;

}


.body-bg {
	background-image: url(../images/bg-main.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	padding: 35px;
}

.nav-brand img {
	width: 200px;
}

.main-content{
	flex-grow: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	color: #fff;
	text-transform: uppercase;
}

.main-content h1{
	text-align: center;
	font-size: 4rem;
	line-height: 1;
}
.main-content p{ 
	font-size: 1.8rem; 
	font-weight: 200;
}

footer {
	text-align: center;
	color: #fff;
	margin-top: auto;
}

footer p {
	text-align: center;
	color: #fff;
	margin-bottom: 10px;
	max-width: 550px;
	margin-left: auto;
	margin-right: auto;
}

footer p a {
	color: #fff;
}

@media screen and (max-width: 574px) {
	.body-bg{
		padding: 20px;
	}
	.nav-brand img{
		width: 140px;
	}
	.navbar{
		display: flex;
		justify-content: center;
	}
}