* {
  margin: 0;
  padding: 0;
}

body {
  background-color: #c0c0c0;
  box-sizing: border-box;
}

#container {
  width: 1000px;
  background-color: #94a6bb;
  border: 2px solid #000000;
  margin: 10px auto;
  border-radius: 25px;
  box-shadow: 15px 15px 10px rgba(0, 0, 0, 0.5019607843);
}

header, footer {
  background-color: #b700ff;
  color: #ffffff;
  text-align: center;
  padding: 30px;
  border-radius: 23px 23px 0px 0px;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

nav {
  background-color: #d8d5d5;
  text-align: center;
  padding: 10px;
}
nav li {
  display: inline;
  list-style-type: none;
  margin-right: 100px;
}
nav a {
  transition-duration: 2s;
  font-size: normal;
  text-decoration: none;
}
nav a:hover {
  font-size: larger;
  font-weight: bold;
  color: #1900ff;
}

main {
  float: left;
  width: 580px;
  height: 400px;
  padding: 5px;
  margin: 5px;
  background-color: #1ec71e;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

aside {
  float: right;
  width: 380px;
  height: 400px;
  padding: 5px;
  margin: 5px;
  background-color: #885407;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

img[alt~=creek] {
  margin-right: 12px;
  float: left;
  width: 182px;
  height: 347.5px;
}

img[alt~=forest] {
  margin-left: 12px;
  float: right;
  width: 182px;
  height: 347.5px;
  overflow: auto;
}

img {
  border: 2px solid rgba(0, 0, 0, 0.2039215686);
  border-radius: 2%;
}

footer {
  text-align: left;
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 23px;
  border-bottom-right-radius: 23px;
  clear: both;
}

@media only screen and (max-width: 600px) {
  #container {
    width: 100%;
  }
  nav li {
    display: inline;
    list-style-type: none;
    margin-right: 4px;
  }
  main {
    width: 100%;
    height: auto;
    margin: 0px;
    padding: 10px 0px 10px;
  }
  aside {
    width: 100%;
    height: auto;
    padding: 10px 0px 10px;
    margin: 0px;
  }
}/*# sourceMappingURL=float.css.map */