/* simple reset*/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    font-size: 1.44rem;
    line-height: 1.44;
    height: 100%;
  }
  h1 {
    font-size: 4.209rem;
  }
  h2 {
    font-size: 3.157rem;
  }
  h3 {
    font-size: 1.777rem;
  }
  h4 {
    font-size: 1.777rem;
  }
  pre,
  code {
    font-size: 1.2rem;
    font-family: Consolas, "Andale Mono", "Lucida Console", "DejaVu Sans Mono",
      "Courier New", monospace;
    color: rgba(255, 255, 255, 0.75);
    white-space: pre-wrap;
  }
  small {
    font-size: 0.777rem;
  }
  
  strong {
    color: rgb(240, 127, 35);
  }
  
  ul {
    margin: 0 1.44em;
  }
  
  body {
    min-height: 110vh;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: rgb(0, 0, 0);
    background-color: rgb(254, 170, 67);
  }
  
  h1,
  h2,
  h3,
  h4 {
    font-family: Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text",
      "Times New Roman", serif;
    color: rgb(0, 0, 0);
  }
  
  /* anchor tag pseudo elements */
  nav a:link,
  nav a:visited {
    color: bisque;
    transition: color 0.35s;
  }
  
  nav a:hover,
  nav a:focus {
    color: rgb(200, 233, 12);
    text-decoration: none;
    /* background-color: bisque; */
  }
  nav a:active {
    color: bisque;
  }
  
 
  
  header {
    position: relative;
    top: 0;
    right: 0;
    padding: 0.5em;
    width: 100%;
    height: 89px;
    display: grid;
    grid-template-columns: 1fr auto;
    background-color: rgba(41, 29, 15, 1);
    overflow: auto;
  }
  
  header h1 {
    font-size: 1.75em;
    display: inline-block;
    color: bisque;
  }
  header nav a {
    padding: 0.5em;
    line-height: 1.44rem;
    /* float: right; */
    text-decoration: none;
    font-size: 1.44em;
    display: inline;
    float: right;
  }
  
  main {
    padding: 0.5em;
    margin-top: 65px;
  }
  main h1 {
    font-size: 40px;
  }
  a:link,
  a:visited {
    color: rgb(0, 0, 0);
  }
  
  a:hover,
  a:focus {
    color: rgb(194, 233, 39);
    text-decoration: none;
    /* background-color: bisque; */
  }
  
  a:active {
    color: rgb(0, 0, 0);
  }
  
  a {
    padding: 0.5em;
    line-height: 1.44rem;
    text-decoration: none;
    font-size: 1em;
    display: inline;
    text-align: center;
  }
  hr {
    border-top: 2px dashed;
  }
  @media only screen and (max-width: 1024px) {
    main {
      grid-template-columns: 1fr 1fr;
    }
  }
  @media only screen and (max-width: 600px) {
    main {
      grid-template-columns: 1fr;
    }
  }