

body {
  background-color: lightgrey;
  color: orange;
  font-family: sans-serif;
}

#page {
  width:800px;
  height:1000px;
  margin:auto;
  background-color:#654321;
}

#top {
  background-color:red;
  text-align:center;
  width:790;
  height:90;
  padding:5px;
  font-size:40px;
}

#left{
  background-color:orange;
  color:white;
  width:180px;
  height:580;
  padding:10px;
  float:left;
}

#right{
  background-color:blue;
  color:white;
  width:580px;
  height:880;
  padding:10px;
  float:left;
}

img{
  display:block;
  margin:auto;
  width:80%;
}

#bottom{
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: red;
  color: white;
  text-align: center;
}



