/** Shopify CDN: Minification failed

Line 53:1 Expected "}" to go with "{"

**/
.about-page-wrapper {
  display: grid;
    grid-template-columns: repeat(15, 1fr);
    width: 100%;
    min-height: 100vh;
    padding: 12px;
}

.left-text {
    align-self: center;
  align-content: center;
    text-align: left;
}

.center-text {
    align-self: center;
   align-content: center;
  text-align: center;
  PADDING: 25VH 0 10vh;
}

.right-text {
    align-self: center;
   align-content: center;
  text-align: right;
}
@media screen and (min-width: 750px) {
  .left-text {
  grid-column: 4 / 7;
  }
  .right-text {
  grid-column: 10 / 13;
  }
  .center-text {
   grid-column: 6 / 11;
}
}

@media screen and (max-width: 749px) {
  .left-text {
  grid-column: 1 / 6;
  }
  .right-text {
  grid-column: 11 / 16;
  }  
    .center-text {
  grid-column: 4 / 13;
}