*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
nav{
    display: flex;
    width: 100%;
    background-color:cadetblue;
    position: relative;
    justify-content: space-between;
    text-align: center;
    padding: 15px 30px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
nav .icon{
    font-size: 30px;
    font-weight: 800;
    color: black;
    cursor: pointer;
}
.hover01 figure img{
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.hover01 figure:hover img{
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
}
.column::after{
	content: '';
	clear: both;
	display: block;
}
.column div{
	position: relative;
	float: left;
	height: 200px;
	margin: 0 0 0 25px;
    padding-left: 50px;
}
footer{
    background-color: blanchedalmond;
    width: 100%;
    padding: 50px;
    text-align: center;
    margin-top: 100px;
}
