/* PAGE.PHP, FOR: Pages */

.main-container {
    display: flex;
    justify-content: center;
    width: 98vw;
    max-width: 1200px;
    margin: 10vh auto;
  }

  .text-content {
    background-color: #fff;
    width: 90vw;
    max-width: 760px;
    margin: 0 2vw;
    padding: 2rem 0;
    padding-bottom: 0;
    -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.2);
  }
  
  .text-content figure {
    margin: 0 2rem;
  }
  
  .text-content img {
    height: auto;
  }
  
  .text-content > :not(aside):not(.share-container):not(ol):not(ul):not(figure) {
    padding: 0 2rem;
  }
  
  .text-content h1 {
    font-size: 2.2rem;
    margin-top: 0;
  }
  
  .text-content h2 {
    font-size: 1.6rem;
    margin-bottom: 0;
  }
  