body {
  background: url("images/wheat-field-with-reaper.png");
  background-size: 100%;
  color: white;
  
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  display: none;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}
 
::-webkit-scrollbar-thumb {
  background: #888;
}
  
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.container {
  justify-content: center;
  margin-top: 100px;
  min-height: 570px; /*min-height: 60vh;*/
  height: 470px;
  
  display: grid;
  gap: 10px;
  grid-template-columns: 1020px;
  grid-template-rows: 60px 600px; /*auto 1fr 1fr auto*/
  grid-template-areas: 
  "title"
  "main";
  }
  
.title {
  grid-area: title;
  background-color: rgba(98, 70, 30, 0.8);
  text-align: center;
  margin-bottom: 6px;
  height: 50px;
  font-size: 40px;
  border: 4px solid rgba(98, 70, 30, 1);
  }
  
main {
    grid-area: main;
    background-color: rgba(98, 70, 30, 0.8);
    background-size: cover;
    height: 600px;
    overflow-y: scroll;
    border: 4px solid rgba(98, 70, 30, 1);
    /*box-shadow: 0 0 5px 4px rgba(255, 255, 255, 1);*/
    /*border-radius: 6px;*/
  }
  
  .main-nested {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    padding: 20px;
    margin: 0;
    gap: 10px;
    }
  
  .main-nested p {
    background-color: rgba(98, 70, 30, 0);
    border: 1px solid;
    padding: 20px;
    margin: 0;
    font-size: 20px;
    /*font-family: Copperplate-32-BC;*/
    }