@charset "UTF-8";

header{
	width:100%;
	height:200px;
	background-color:antiquewhite
	
}

article{
	width:80%;
	height:500px;
	background-color:aquamarine;
	float:left;
}

aside{
	width:20%;
	height:500px;
	background-color:coral;
	float:right;
	
}









.box{
	width:100px;
	height:100px;
	background-color:black;
	transition: all .5s;
	display:inline-block;
	margin-right:7.5px;
	margin-left:7.5px;
	border:groove #6669FF 5px;
}
.box:hover{
	background-color:lightcoral;
	width:200px;
}

.circle{
	width:100px;
	height:100px;
	background-color:black;
	transition: all .5s;
	display:inline-block;
	margin-right:7.5px;
	margin-left:7.5px;
	border:groove #C12FAF 5px;
	border-radius: 50%;
}
.circle:hover{
    background-color: darkseagreen;
    height: 200px;
	width:200px;
}

body{
    font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
	font-size: 16px;
}

h1{
    font-size: 50px;
    text-align: center;
}


p{
    text-align: center;	
}
