body{
	background-color: #456d0c;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	margin: 0;
}

.profile{
	display: flex;
	width: 500px;
	
}

.logo{
	width: 40%;
	display: flex;
	align-items: center;
	margin-right: 10px;
	
}
.logo img{
	max-width: 100%;
	height: auto;
	
}

.text h2 {
	font-size: 1.6em;
	color: #fff;
	margin-top: 0;
	margin-bottom: 0;

}
.text p{
	color: #fff;
	margin-bottom: 0;
}
.text p a{
	color: #fff;
}


@media screen and (max-width: 767px) {
	
	body{
		display: block;
	}
	.profile{
		flex-direction: column;
	}
	
	.logo{
		width: 80%;
		margin: 20px auto;
	}
	
	.text{
		width: 80%;
		margin: 0 auto 20px;	
	}
}