:root {
  --black: #3F3B3A;
  --grey: #D0CCC8;
  --white: #F5F2E8;
}
.manufacturing-consent-regular {
  font-family: "Manufacturing Consent", system-ui;
  font-weight: 400;
  font-style: normal;
}
body {
  background: url(https://wallpapers.com/images/hd/cool-black-and-white-aesthetic-554d1a6kopp21ioa.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  margin: 50px;
}
h1 {
  font-family: "Manufacturing Consent", serif;
  text-align: center;
  font-weight: normal;
  font-size: 5vw;
  margin: 0px;
}
h2 {
  font-family: "Manufacturing Consent", serif;
  text-align: center;
  font-weight: normal;
  font-size: 3vw;
  margin: 0px;
  border-bottom: 1px solid;
  border-top: none;
}
p {
  font-size: 1rem;
  color: var(--black);
  font-family: 'Times New Roman', serif;
}
.container {  
  background: var(--white);
  border: 5px ridge var(--grey);
  border-radius: 10px;
	padding: 5px;
  display: grid;
  grid-template-columns: 0.7fr 1.6fr 0.7fr;
  grid-template-rows: 0.5fr 1.5fr 1fr;
  gap: 5px 5px;
  grid-auto-flow: row;
  grid-template-areas:
    "Header Header Header"
    "side-1 body side-2"
    "side-1 body side-2";
}
.Header, .side-1, .body, .side-2 {
  padding: 10px;
  border: 1px solid var(--black);
}
.Header { 
  grid-area: Header;
}
.side-1 { 
  grid-area: side-1;
}
.body { 
  grid-area: body;
}
.side-2 { 
  grid-area: side-2; 
}
@media only screen and (max-width: 750px) {
  body {
  margin: 10px;
}
  .container {
    display: flex;
    flex-direction: column;
    height: max-content;
  }
  .Header, .side-1, .body, .side-2 {
    height: max-content;
  }
}