body{
    margin: 0;
    padding: 0;
    min-height: 100vh;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

html, body{
    height: 100%;
}

header, main, footer{
    text-align: center;
}

header {
    display: block;
    background-color: #537D5D;
}

main {
    flex: 1;
    background-color: #D2D0A0;
}

div {
    padding: 25px;
}

img {
    width: 600px;
    border: 20px solid white;
    border-bottom: 60px solid white;
    box-shadow: 0 0 10px 0;
}

button {
    background-color: #9EBC8A; 
    color: white;             
    padding: 10px 20px;        
    border: none;              
    border-radius: 5px;        
    cursor: pointer;           
    font-size: 16px;
    margin: 10px 0;           
}

button:hover {
    background-color: #9EBC8A; 
}

a {
    text-decoration: none; 
    color: white;         
}
  

  

footer {
    background-color: #73946B;
}

footer form{
    display: inline-block;
    background-color: #73946B;
}


figure {
  margin: 0;
  padding: 0;
  text-align: center;
}

figcaption {
  font-size: 14px;
  color: #444;   /* Puedes cambiar el color de la fuente si lo deseas */
  margin-top: 10px;
  font-style: italic;
}