html {
  height: 100%;
}
body {
  min-height: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr auto;
      grid-template-rows: 1fr auto;
}
.content {
  padding: 20px;
  text-align: center;
}
.footer {
  -ms-grid-row: 2;
      grid-row-start: 2;
  grid-row-end: 3;
}





* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font: 16px Sans-Serif;
   background-image: url(../images/background-photo.jpg);
  
  /* Image is centered vertically and horizontally at all times */
  background-position: center center;
  
  /* Image doesn't repeat */
  background-repeat: no-repeat;
  
  /* Makes the image fixed in the viewport so that it doesn't move when 
     the content height is greater than the image height */
  background-attachment: fixed;
  
  /* This is what makes the background image rescale based on its container's size */
  background-size: cover;
  
  /* Pick a solid background color that will be displayed while the background image is loading */
  background-color: white;
}
h1 {
  margin: 0 0 20px 0;
}
p {
  margin: 0 0 20px 0;
}
.footer {
  background-color: rgba(232,176,38,0.7);

  color: white;
	padding-top: 30px;
	padding-left: 20px;
	padding-right: 20px;
}
.contenidoPie {
 text-align: center;
	padding-bottom: 20px;
}