
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* this is taken directly from wes bos 30dayjs, i'll change this in future iterations */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

html {
    box-sizing: border-box;
  }
  
  *, *:before, *:after {
    box-sizing: inherit;
  }
  
  body {
    min-height: 100vh;
    margin: 6px; /* Important! */
    font-family: sans-serif;
    background:
      linear-gradient(45deg, hsla(340, 100%, 55%, 1) 0%, hsla(340, 100%, 55%, 0) 70%),
      linear-gradient(135deg, hsla(225, 95%, 50%, 1) 10%, hsla(225, 95%, 50%, 0) 80%),
      linear-gradient(225deg, hsla(140, 90%, 50%, 1) 10%, hsla(140, 90%, 50%, 0) 80%),
      linear-gradient(315deg, hsla(35, 95%, 55%, 1) 100%, hsla(35, 95%, 55%, 0) 70%);
  }
  
  .wrapper {
    margin: 0 auto;
    max-width: 500px;
    font-size: 20px;
    line-height: 2;
    position: relative;
  }
  
  a {
    text-decoration: none;
    color: rgb(236, 245, 244);
    background: rgba(0,0,0,0.05);
    border-radius: 20px;
  }
  
  small {
    color:aliceblue;
  }


  .highlight {
    transition: all 0.2s;
    border-bottom: 2px solid white;
    position: absolute;
    top: 0;
    background: white;
    left: 0;
    z-index: -1;
    border-radius: 20px;
    display: block;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
  }
  
  .menu {
    padding: 0;
    display: flex;
    list-style: none;
    justify-content: center;
    margin:30px 0;
    font-family: 'Courier New', Courier, monospace;
  }
  
  .menu a {
    display: inline-block;
    padding: 5px;
    margin: 0 20px;
    color: rgb(224, 255, 251);
    font-family:'Courier New', Courier, monospace;
  }
  
/* moved from in html  */
  h1 {
    color: rgb(200, 208, 80);
    margin-bottom: 15px;
    font-size: 50px;
    background-color: none;
    text-shadow:  4px 12px 6px green;
    }

h2 {
    margin-bottom: 15px;
    color: orange;
    text-align: center;
    text-shadow:  4px 12px 2px green;

    /* this is me walking my way back in time through what was covered in week one */
    }
h3 {
    color:yellow;
    margin-bottom: 15px;
    text-align: center;
    text-shadow: 10 10 4 black;
    }
p {font-family:'Courier New'}

img {
      /* centering the image in the middle of its enclosing tag, auto rule on both left and right margins -browser will do the necessary to center the block elemetn   */
    margin-left:auto;
    margin-right: auto;
    display: block;

}
/* end of moved from in html */


  h5 {
    float:left;
  }

  ul {
    float:right;
  }

  article {
    padding: 40px;
    /* just to show padding */
    display: flex;
    float: right
  }
  
  aside {

   padding: 77px;
    /* just to show padding */
    display: flex;
    float: right

  }

  canvas {
    border: 5px solid whitesmoke;
    border-radius: 11px;
    width: 90%;
    height: 90%;
  }