#page_Wrapper {
  grid-template-areas: "page-text";
}

#page_Text {
  background: hsl(var(--base-color-80));
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  border: var(--border-style-2);
  box-shadow: var(--box-shadow-style);
  grid-area: page-text;
  grid-column: col 4/span 6;
  margin-bottom: 1rem;
}

@media screen and (min-width: 992px) and (max-width: 1399.98px) {
  #page_Text {
    grid-column: col 3/span 8;
  }
}
@media screen and (min-width: 772px) and (max-width: 991.98px) {
  #page_Text {
    grid-column: col 2/span 10;
  }
}
@media screen and (min-width: 574px) and (max-width: 771.98px) {
  #page_Text {
    grid-column: col 1/span 12;
  }
}
@media screen and (min-width: 0px) and (max-width: 573.98px) {
  #page_Text {
    grid-column: col 1/span 12;
  }
}