
footer .column
{
	width: 27%;
}
 
footer p
{
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 10px;
}
 
footer ul
{
	list-style-type: none;
	padding: 0;
}
 
footer
{
	display: flex;
	justify-content: space-around;
	background-color: #e2a74e;
	color: #333;
	padding: 20px;
}

footer li
{
	margin-bottom: 0px;
}

footer p
{
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 0;
}

footer a
{
	color: #333;
	text-decoration: none;
}

@media only screen and (max-width: 600px)
{  
	footer
	{
		display: flex;
		flex-direction: column;
	}
	footer .column {
		width: 100%;
	}
}