@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

body{
	background-color:#CCC;
	font-family:Georgia, "Times New Roman", Times, serif;	
}
#all{
	width:800px;
	height:700px;
	border:3px solid #039;
	border-radius:15px;
	margin:20px auto;
	box-shadow: 0px 0px 20px #000;
}
#top{
	width:770px;
	height:40px;
	padding:5px 15px 5px 15px;
	font-size:1.2em;
	border-bottom:1px solid black;
	background:white;
	border-top-left-radius:15px;
	border-top-right-radius:15px;
	background: linear-gradient(90deg, #000080, #4893cb);
}
.sidebar {
	font-family: "Oswald";
	font-weight: 400;
	font-size: 3em;
	font-style: italic;
	color: white;
}
#left{
	width:150px;
	height:600px;
	border-right:2px solid black;
	padding:5px;
	background-color:green;
	float:left;
}
#right{
	width:auto;
	height:580px;
	padding-top:30px;
	text-align:center;
	background:#DDDDDD;
}
.boat {
    transform: rotate(180deg);
	transition: transform 1s;
}
.boat:hover {
    -webkit-transform: scale(1.25);
	-ms-transform: scale(1.25);
	transform: scale(1.25);
}
.clear{
	clear:both;
}
footer{
	width:800px;
	height:36px;
	background:#fff;
	text-align:center;
	border-bottom-left-radius:15px;
	border-bottom-right-radius:15px;
	padding-top:4px;
	text-shadow: 1px 1px 3px #464646;
}