.grid {
    display: grid;
    grid-template-columns: 150px auto 150px;
    grid-template-rows: repeat(3, 100px);
    grid-gap: 1em;
  }
  
  header,
  aside,
  article,
  footer {
    background: #eaeaea;
    padding: 1em;
  }
  
  header, footer {
    grid-column: 1 / 4;
  }
  /*WYOMING */
  .wyoming {
      color: #006600;
  }
  
  /* Demo Specific Styles */
  body {
    margin: 0 auto;
    max-width: 56em;
    padding: 1em 0;
  }
  
  .grid > * {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* for Jumbotron */
  /* Move down content because we have a fixed navbar that is 3.5rem tall */
body {
    padding-top: 3.5rem;
  }

  html {
    font-size: 1rem;
  }
  
  @include media-breakpoint-up(sm) {
    html {
      font-size: 1.2rem;
    }
  }
  
  @include media-breakpoint-up(md) {
    html {
      font-size: 1.4rem;
    }
  }
  
  @include media-breakpoint-up(lg) {
    html {
      font-size: 1.6rem;
    }
  }
  