body{
	margin: 0;
	padding: 0;
	background: linear-gradient(180deg, coral, seashell);
	font-family: sans-serif;
}
header {
	background-color: coral;
	position: sticky;
	top: 0;
	z-index: 1;
}
.menu{
	height: fit-content;
	width: 100%;
	max-width: 1120px;
	padding: 15px;
	margin: 0 auto;
}
.menu:after {
	content: "";
	display: table;
	clear: both;
}
img {
	height:100px;
	float:left;
	margin-block: auto;
	border: 0;
	border-radius: 10px;
}
nav {
	float:right;

}
nav li {
	display: inline-block;
}
nav a{
	margin: 0 10px;
	text-decoration: none;
	line-height: 100px;
	font-size: 20px;
	color:white;
	padding: 5px 10px;
	border: 0;
	border-radius: 10px;
}
nav ul{
	margin: 0;
	padding: 0;
}
a:visited {
	color: purple;
}

a:hover{
	color: blanchedalmond;
	background-color: #000;
	transition-duration: 1.3s;
}

article, section{
	width: 500px;
}
section{
	float: right;
}
main:after{
	content: "";
	display: table;
	clear: both;
}
article{
	float: left;
	padding: 20px 40px;
}
article h2{
	text-align: center;
}
article div{
	border-block: 2px solid black;
}
section img{
	margin: 20px auto;
	height: 200px;
	transition-duration: 0.3s;
}
section img:hover{
	height: 250px;
	border: 2px solid black;
	opacity: 50%;
}
footer h3{
	text-align: center;
	font-weight: 700;
	font-family: monospace;
	font-size: 48px;
}
.top-header{
	text-align: center;
	padding-top: 100px;
	padding-bottom: 100px;
	border-bottom: 1px solid #c4c4c4;
}
.button{
	background-color: #56c768;
	padding: 15px 30px;
	border-radius: 10px;
}
.button:hover{
	background-color: blanchedalmond;
}