.layout {
  width: 65%;
  margin: 2% auto;

  display: grid;
  grid:
    "header header " auto
    "leftSide body " 1fr
    "footer footer " auto
    / 20% 1fr ;
  gap: 8px;
}

body{
  background-image: url(parchment.png);
  font-family: "Manufacturing Consent", system-ui;
font-size: 1.6rem;
}

.header { grid-area: header;
background-image: url("gnfl.png");
color: wheat;
outline: double black 5px;

display: grid;
}

.header h1{
  font-size: 130px;
  justify-self: right;
  margin: 0px 20px;
  
}



.leftSide { grid-area: leftSide; }
.body { grid-area: body;
text-align: justify;
padding: 7px;
 }
.rightSide { grid-area: rightSide; }
.footer { grid-area: footer;
text-align: center; }

.manufacturing-consent-regular {
  font-family: "Manufacturing Consent", system-ui;
  font-weight: 400;
  font-style: normal;
}

.fl{
  font-size: 100px;
  display: inline-block;
}

a{
  color:rgb(128, 0, 0)
}