/* Page1.css */
header, footer {
   text-align: center;
   border: solid 5px grey;
   font-family: 'Mate SC', serif;
   color: #FFEDE5;
   background-color: black;
  
}

h1 {
  text-align: center;
}

ul {
  text-align: center;
  white-space:nowrap; 
  height: 1em;
  width: 100%;
}

li {
  display: inline;
}


a {
  color: green;
}

footer {
  padding: 10px;
  border-radius: 3px;
  align: bottom;
}

body {
  background-image: url(../img/Dota2BG.jpg);
  font-family: 'Mate SC', serif;
  color: #FFEDE5;

 }

 figcaption {
  font-size: 22px;
  font-style: oblique;
 }

 #banner {
  display:inline-block;
  margin: 0 auto;

 }


#build {
  text-shadow: 2px 2px red;
  font-size: 20px;

}

#funny {
  border: 2px solid red;
  box-shadow: 4px 4px #800000;
  transform: rotate(10deg);
  padding: 10px;
}
#funny2 {
  border: 2px solid red;
  box-shadow: 4px 4px #800000;
  transform: rotate(-12deg);
  padding: 10px;
  border-radius: 30px;
}

img {
  border: 3px solid white;
  box-shadow: 3px 3px grey;
  
  border-radius: 10px;
  padding: 5px;
  height: auto;
  max-width: 32%; 
}


#summary {
  border: solid 5px grey;
  text-align: center;
  font-size: 25px;
}

footer {
  position:fixed;
  bottom: 0px;
  width: 400px;
  text-align: center;
}

.centered {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

