    body {
        background-color: rgb(239, 238, 238);
    }
  
   .content {
      grid-area: content;
    }
  
    .header {
      grid-area: header;
      font-family: "Lora", serif;
			font-weight: 600;
			font-style:italic; 
      font-size: 200%;
      text-align: left;   
    }
    .img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        text-align: left;
    }
    .header2 {
      grid-area: header2;
      font-family: "Lora", serif;
			font-weight: 600;
			font-style:italic; 
      font-size: 200%;
      color: #c5a767;
     }
    .header3 {
        grid-area: header3;
        text-align: right;
        color :darkblue;
        text-decoration: double;
       }
   .footer {
      grid-area: footer;
      color: rgb(36, 35, 35);
      font-size: smaller;
    }
  
    .contenedor1 {
      align-items: center;
      
    }
  
    .contenedor1 {
      display: grid;
      grid-template-areas:
       "header header2 header3"
       "content content content"
       "footer footer footer"
    }
  
  .box {
    border-radius: 2px;
    padding: 5px;
  }
  
  .header,
  .footer {
    align-items: center;
    text-align: center;
  }

  .header2, header3 {
    align-items: center;
    text-align: center;
  }
  