/* Here we can set styles for this lab page that we don't want to effect others pages */

/* the period in a CSS selector selects an element by class, e.g., class="minor-section" */
.minor-section {
    padding: 10px;
    margin-bottom: 10px;
    border: solid 1px #444;
    background-color: #e7bc13f4;
    font-size: 150%
  }
  .text p {
    display: inline-block;
    max-width: 60%;
    margin: 3px;
    padding: 5px 10px;
    border-radius: 15px;
    background-color: rgb(150, 39, 219);
    color: white;
    font-family: sans-serif;
    font-size: 0.8em;
  }
