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: 10px 10px 15px rgba(0, 0, 0, 0.5);
}

#top {
  width: 770px;
  height: 40px;
  padding: 5px 15px;
  font-size: 1.2em;
  border-bottom: 1px solid black;
  background: linear-gradient(to right, rgb(0, 179, 238), rgb(51, 166, 51), rgb(255, 102, 255));
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

#left {
  width: 150px;
  height: 600px;
  border-right: 2px solid black;
  padding: 5px;
  background-color: green;
  float: left;
}

.side {
  font-family: "UnifrakturMaguntia", cursive;
  font-size: 2rem;
}

#right {
  width: auto;
  height: 580px;
  padding-top: 30px;
  text-align: center;
  background: #dddddd;
}

.boat {
  display: inline-block;
  margin-top: 200px;
  transform: scale(1.1) rotate(-140deg) skew(200deg, -14deg);
  filter: sepia(20%);
  transition: transform 0.3s ease;
}

.boat:hover {
  transform: scale(1.5) rotate(-140deg) skew(20deg, -14deg);
}

.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: 3px 3px 2px #555;
}

a {
  color: blue;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
