body {
  background-color: lightgrey; 
  padding: 0; 
  margin:0; 
  text-align: center;
  font-family: sans-serif;
  letter-spacing: 1pt;
  color:black;
  
  display: grid;
  grid-template-areas: 
   "nav"
    "header"
    "main"
    "footer";
}

header {
  grid-area: header;
  padding: 55px 0 0 0;
  margin: 50px 0 0 0;
  font-size: 42px;
  font-weight: 900;
  letter-spacing: normal;
  position: fixed;
  width: 100%;
  min-height: 110px;
}
    
nav {
  grid-area: nav;
  color: white;
  background-color: black;
  font-size: 12pt;
  position: fixed;
  z-index: 1000;
  width: 100%;
  display:grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  padding: 10px;
}

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

a:hover {
  color: yellow;
  text-shadow: 0 0 20px yellow;
}


nav section {
  font-style: oblique;
}

nav p {
  font-family: sans-serif;
  text-align: center;
}


main {
  grid-area: main;
  margin: 15px;
  font-size: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  padding:175px 0 0 0; 
}


main section {
  background-image: linear-gradient(red, white, teal);
  padding:0;
  min-height:250px;
  color:lightgray;
  font-style: oblique;
  display:grid;
  place-items: center;
  box-shadow: 4px 4px 10px gray;
}

main section:hover {
opacity: 0.8; 
transform: scale(1.01);
}

p:hover {color:yellow;}


footer {
  grid-area: footer;
  color: lightgray;
  background-color: black;
  font-size: 10pt;
  min-height:155px;
  place-items: center;
  margin-top: 55px;
  display:grid;
  grid-template-columns: 1fr 1fr; 
}

footer section.big {
  font-size: 33px;
  font-weight: 1000;
}

footer section.lil {
  font-size: 8px;
}



/* this is a new version */
