body{
	
height : auto;
overflow-x : hidden;
background: #f0bc1f;
background: -moz-linear-gradient(left, #f0bc1f 0%, #e88484 100%);
background: -webkit-gradient(left top, right top, color-stop(0%, #f0bc1f), color-stop(100%, #e88484));
background: -webkit-linear-gradient(left, #f0bc1f 0%, #e88484 100%);
background: -o-linear-gradient(left, #f0bc1f 0%, #e88484 100%);
background: -ms-linear-gradient(left, #f0bc1f 0%, #e88484 100%);
background: linear-gradient(to right, #f0bc1f 0%, #e88484 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f0bc1f', endColorstr='#e88484', GradientType=1 );
	
}

#container {
    text-align: center;
}
a, figure {
    display: inline-block;
}
figcaption {
    margin: 10px 0 0 0;
    font-variant: small-caps;
    font-family: Arial;
    font-weight: bold;
	color : black;
}
figure {
    padding: 5px;
}
img:hover {
    transform: scale(1.1);
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
}
img {
    width : 128px;
    transition: transform 0.2s;
    -webkit-transition: -webkit-transform 0.2s;
    -moz-transition: -moz-transform 0.2s;
    -o-transition: -o-transform 0.2s;
}

button {
  position : fixed;
  background-color: transparent;
  border: 2px solid red;
  border-radius: 15px;
  color: red;
  cursor: pointer;
  font-size: 15px;
  margin-top: 5px;
  padding: 10px 20px;
  text-transform: uppercase;
  transition: all 200ms;
  z-index : 999;
}
button:hover, button:focus {
  background-color: red;
  color: #ffff80;
  outline: 0;
}