/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

        body {
        font-family: Georgia, serif;
        background-color: #efeadd;
        min-height: 100vh;
        max-width: 100vw;
        margin: 0 auto;
      }
      .headandfoot {
        background-color: #bfbbb0;
        padding-bottom: 10px;
        max-width: 700px;
        margin: 0 auto;
      }
       .footerblock {
        background-color: #bfbbb0;
        padding-bottom: 10px;
        max-width: 700px;
        margin: 0 auto;
      }
      .maintext {
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.5;
      }
      h1 {
        font-family: "courier", monospace;
        font-weight: bold;
        font-size: 190%;
        color: black;
        text-align: center;
        padding-top: 10px;
        padding-bottom: 10px;
      }
        h2 {
        font-family: courier, monospace;
        font-weight: normal;
        font-size: 90%;
        color: black;
        text-align: center;
        padding-top: 25px;
        }
         h3 {
        font-family: courier, monospace;
        font-weight: normal;
        font-size: 120%;
        color: black;
        text-align: center;
        padding-top: 10px;
        padding-bottom: 10px;
        }
      .links {
        font-variant: small-caps;
        text-align: center;
      }
      .intro {
        background: white;
        color: blue;
        border: 3px solid black;
        border-radius: 5px;
        padding: 20px;
        margin: 40px 10;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        a:hover {
          color: white;
          background-color: #bfbbb0;
        }
           /* Column setting from w3 schools'two columns' tutorial */
        .columnleft {
          float: left;
          width: 30%;
          margin: 0 auto;
        }
        .columnright {
          float: left;
          width: 70%;
          margin:0auto;
        }
        .row:after {
        content: "";
        display: table;
        clear: both;
        }