body {
    overflow-y: scroll;
    margin: 0;
    padding: 0;
    font-family: Verdana, Geneva, sans-serif;
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  @media all and (max-width: 800px) {
    body {
      padding: 1em;
    }
  }
  
  
  code {
    font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
      monospace;
  }
  

a, a:active {
    text-decoration: none;
    color: red;
  }
  
  a:hover {
    text-decoration: underline;
    color: black;
  }
  
  .header {
    background-image: linear-gradient(to left, white 1%, transparent 99%), url("./images/bricks.jpg");
    background-repeat: no-repeat;
    background-size: 100% 100%, cover;
    opacity: 100%;
    box-shadow: 0 0 0.25em 0.25em white inset;
    box-shadow: 0 6px 6px -6px black;
  }
  .header-text {
    color:rgb(50,50,50,.9);
    text-shadow: 3px 3px rgba(255,255,255,.5);
  }
  
  .header-text.active {
    color:rgb(50,50,50,.9);
    text-shadow: 3px 3px rgba(255,255,255,.5);
  }
  .header-text:hover {
    color:rgb(30,30,30,.9);
    text-shadow: 3px 3px rgba(255,255,255,.75);
  }
  main {
    background-color: white;
  }

  h1 {
    margin: 0;
    text-align: center;
  }

  h2 {
    font-size: 2em;
  }
  
  
  @media all and (min-width: 801px) {
    main {
      margin: 1rem auto 4rem;
      width: 80%;
      max-width: 70rem;
    }
    h1 {
      font-size: 6vw;
    }
  }
  @media all and (max-width: 800px) {
    main {
      width: 100%;
    }
    h1 {
      font-size: 12vw;
    }
  }

  h3 {
    padding: 0.25em;
    border-radius: 0.25em;
    background: linear-gradient(to right, rgba(170, 74, 68, 0.7), transparent 80%);
    box-shadow: 0 3px 3px -3px black;
  }

  h4 {
    padding: 0.25em;
    border-radius: 0.25em;
    background: linear-gradient(to right, rgba(200, 200, 200, 0.7), transparent 80%);
    box-shadow: 0 3px 3px -3px black;
  }
  
  p {
    font-size: 1.1rem;
    /*max-width: 75ch;*/
  }
  
  img {
    display: block;
    max-width: 100%;
  }
  
  .wrap-image {
      margin: 0.5em;
      padding: 0.5em;
      max-width: 90%;
  }
  
  .left {
    float: left;
  }
  .right {
    float: right;
  }
  
  figure {
    position: relative;
    display: inline-block;
    margin-block-start: 0.25em;
    margin-block-end: 0.25em;
    margin-inline-start: 0.25em;
    margin-inline-end: 0.25em;
  }
  
  .multifig {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .cutout {
    border: 1px dashed grey;
    border-radius: 0.25em;
  }
  
  figure img {
    display: block;
  }
  
  figcaption {
    text-align: center;
    font-size: 0.75em;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 0.25em;
    background: rgba(230,230,230, 0.95);
  }
  
  blockquote {
    font-size: 1rem;
    color: rgb(80, 80, 80);
    font-style: italic;
  }
  
  table {
    font-family: arial, sans-serif;
    border: 1px solid black;
    border-collapse: collapse;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1em;
    margin-bottom: 1em;
  }
  

  thead tr td {
    font-weight: bold;
    border: 1px solid black;
  }
  
  td, th {
    text-align: left;
    padding: 0.25em 0.5em;
  }
  
  tr:nth-child(even) {
    background-color: rgb(240,240,240);
  }
  
  .builder-logo {
    max-height: 200px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .builder-name {
    text-align: center;
    width: 50%;
    font-size: 1.25em;
    padding: 1em;
  }
  
  
  .flex-container {
      display: flex;
      align-items: center;
  }
  
  .person-card {
    border: 1px dashed grey;
    border-radius: 0.5em;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1em;
    margin-bottom: 1em;
    width: 100%;
    min-height: 230px;
  }
  
  .person-text {
    padding: 0.25em 0.5em;
  }

  .simple-bullet {
    padding: 0 0 0 1em;
    margin: 0;
  }

  .summary-text {
    font-size: 25px;
    font-weight: bold;
  }




.modal-small {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
  }
  
.modal-small:hover {opacity: 0.7;}


  /* The Modal (background) */
#modal-overlay {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 0;
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
  }
  
  /* Modal Content (Image) */
  .modal-content {
    margin: 4em auto auto auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
  }
  
  /* Caption of Modal Image (Image Text) - Same Width as the Image */
  #modal-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 80%;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
  }
  
  /* The Close Button */
  .close {
    position: absolute;
    top: 0.5em;
    right: 1em;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
  }
  
  .close:hover,
  .close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
  }
  
  /* 100% Image Width on Smaller Screens */
  @media only screen and (max-width: 700px){
    .modal-content {
      width: 100%;
    }
  }