/*css for layout */

*{
  margin: 0;
  padding: 0;
}

#container {
  width: 1000px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 0px;
  border:2px solid white;
}

h4 {
  color: purple;
  text-align: center;
  font-size: 16px;
}

h5 {
  color: purple;
  font-size: 12.8px;
}

header {
  background-color: #add8e6;
  height: 100px;
  width: 1000px;
}

#main {
  height: 300px;
  width: 996px;
  overflow: hidden;
}
  
   #column1 {
    background-color: #ffffff;
    height: 350px;
    width: 700px;
    float: left;
    padding: 25px;
    margin: 0 auto;
    font-size: 12px;
    border:2px solid white;
  }
  
  #sidebar1 {
    background-color: #ffffff;
    height: 350px;
    width: 225px;
    float: right;
    padding: 5px;
    color: purple;
    font-size: 12px;
    border:2px solid white;
  }
  
footer {
  background-color: #de3163;
  height: 50px;
  width: 1000px;
  text-align: center;
    color: #000000;
    font-size: 12px;
}