.footer{
	color: white;
	width: 100vw;
	background-color: #2C2C2C;
	padding: 20px;
	display: flex;
	justify-content: space-between;
	
}

.footer p{
	font-size: 14px;
	margin: 5px 5px;
}

.footer p a{
	color: white;
}

.footer p a:hover{
	text-decoration: underline;
}

.footer .slogan{
	width: 20vw;	
}

.footer .slogan p{
	margin: 10px 10px;
}

.footer .links{
	width: 15vw;
}



@media (max-width:768px)
{
	.footer{
		flex-direction: column;
		padding: 10px;
	}
	
	.footer .slogan{
		width: 95vw;
	}
	
	.footer .links{
		width: 95vw;
	}
	
	.footer div{
		margin: 10px 10px;
	}
	
}