body {
  background-image: url('https://marblegallery.neocities.org/whiterosesbg.jpg');
  background-size: 50%;
  color: grey;
  font-family: 'Times New Roman', serif;
  display: flex;
  justify-content: center;
  align-items: center;
}

#container {
  width:500px;
  min-height:700px;
  margin-left:auto;
  margin-right:auto;
  margin-top:50px;
  padding-top:0px;
  border:4px solid #DCDCDC;
  background-color:#F8F8FF;
  position:relative;
}

#menu {
  float: left;
  width: 90px;
  margin-top: 20px;
}

#menu a {
  display:block;
  width:80px;
  font-size:13px;
  text-decoration:none;
  padding:5px;
  padding-left:10px;
  margin-bottom: 5px;
  background-color: gainsboro;
  border:0px solid gainsboro;
  font-weight:bold;
  color: grey;
}

#menu a:hover {
  color: dimgrey;
}

#content {
  float: left;
  padding: 5px;
  padding-left: 25px;
  width: 330px;
  min-height: 250px;
  margin: 20px;
  text-align: justify;
  border: 2px dashed gainsboro;
  list-style-type: circle;
}

#footer {
  float: left;
  position: absolute;
  bottom: 0;
}

h1 {
  font-size: 16px;
}

p {
  font-size: 13px;
}

li {
  font-size: 13px;
}

footer {
  font-size: 10px;
  margin: 5px;
}

a, a:link, a:active, a:visited {
  font-weight: bold;
  color: maroon;
}

a:hover {
  color: firebrick;
} 