/* Doug Swails
   Version 3.2
   Built 2022*/


* {
    box-sizing: border-box;
  }
  
  h1 {
    margin-top: 30px;
    padding-top: 15px;
    margin-left: 0%;
    font-size: 4em;
    color:#2f57b5;
    
  }
/* Create three equal columns that float next to each other */
  .column {
    float: left;
    padding: 10px;
  }
  
  /* Left and right column */
  .column.side {
    width: 20%;
  }
  
  /* Middle column */
  .column.middle {
    width: 60%;
  }

  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  footer {
    line-height: .03;
    text-align: center;
  }
/* Responsive layout - makes the three columns stack on top of each other instead of next to each other on smaller screens (600px wide or less) 
  @media screen and (max-width: 600px) {
    .column {
      width: 100%; 
    }
  } */
  
 