
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: rgb(6, 57, 65, 0.7);
	color: white;
	padding: 20px;
	font: bold 1em/1.5em Montserrat-Regular;
	min-height: 150px;
}

footer li
{
	margin-bottom: 0px;
}

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

footer a
{
	color: white;
	text-decoration: none;
}

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