#container{
    background: white;
    width: 950px;
    margin: 0px auto;
    box-shadow: 0px 0px 20px 3px black;
}
.btnDiv{
    margin-left: 650px;
    margin-top: -61px;
}

@keyframes slidy {
0% { left: 0%; }
20% { left: 0%; }
25% { left: -100%; }
45% { left: -100%; }
50% { left: -200%; }
70% { left: -200%; }
75% { left: -300%; }
95% { left: -300%; }
100% { left: -400%; }
}

body { margin: 0; } 
div#slider { overflow: hidden; }
div#slider figure img {
    width: 20%;
    float: left;
    height: 300px;
}
div#slider figure { 
  position: relative;
  width: 500%;
  margin: 0;
  left: 0;
  text-align: left;
  font-size: 0;
  animation: 30s slidy infinite; 
}


.btn {
  background: #3498db;
  background-image: -webkit-linear-gradient(top, #3498db, #2980b9);
  background-image: -moz-linear-gradient(top, #3498db, #2980b9);
  background-image: -ms-linear-gradient(top, #3498db, #2980b9);
  background-image: -o-linear-gradient(top, #3498db, #2980b9);
  background-image: linear-gradient(to bottom, #3498db, #2980b9);
  -webkit-border-radius: 8;
  -moz-border-radius: 8;
  border-radius: 8px;
  font-family: Arial;
  color: #ffffff;
  font-size: 19px;
  padding: 10px 20px 10px 20px;
  text-decoration: none;
}

.btn:hover {
  background: #3cb0fd;
  background-image: -webkit-linear-gradient(top, #3cb0fd, #3498db);
  background-image: -moz-linear-gradient(top, #3cb0fd, #3498db);
  background-image: -ms-linear-gradient(top, #3cb0fd, #3498db);
  background-image: -o-linear-gradient(top, #3cb0fd, #3498db);
  background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
  text-decoration: none;
}

#header{
    height:200px;
    width: 950px;
    background: linear-gradient(to left,yellow,green,blue);
}
.image{
    height: 150px;
    width: 150px;
}

/* navBar */

#topMenu {
    list-style-type: none;
    margin: 0;
    padding: 5px 0px;
    overflow: hidden;
    background-color: #333;
}

#topMenu li {
    float: left;
    border-right:0px solid #bbb;
}

#topMenu li:last-child {
    border-right: none;
}

#topMenu li a {
    display: yellow;
    color: yellow;
    text-align: center;
    padding: 40px 20px;
    text-decoration: none;
}

#topMenu li a:hover:not(.active) {
    background-color: yellow;
}

#topMenu .active {
    background-color: red;
}

#menu{
    height: 50px;
    width: 950px;
    background-color: green;
    margin-top: 0px;
}
#sideBar{
    height: 950px;
    width: 200px;
    background-color: green;
    float:left;
}


#mainSection{
    height: 950px;
    width: 950px;
    background-color: red;
    margin-top: 7px;
}
#footer{
    height: 100px;
    width: 950px;
    background-color: black;
    clear: both;
}

#sideMenu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 200px;
    background-color: yellow;
}

#sideMenu li a {
    display: block;
    color: #000;
    padding: 8px 0 8px 16px;
    text-decoration: none;
}

/* Change the link color on hover */
#sideMenu li a:hover {
    background-color: #555;
    color: white;
}