/*browser reset*/
*{
    padding: 0;
    margin: 0;
  }
  
  body{
    font-family: Arial, sans-serif;
    height: 1000px;
  }
  
  
  header{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    height: 100px;
    border-bottom: solid rgb(0,0,0) 2px;
  }
  header h1{
    font-family: cursive;
  }
  a{
    color: rgb(0,0,0);
  }
  
  /* container for employment and miscl info*/
  main{
    position: relative;
    top: 20px;
    width: 900px;
    margin: 0 auto;

  }
  li h2{
    padding: 10px;
  }
  article{
    display: flex;
    justify-content: space-between;
    margin-left: 5%;
    padding: 10px;
  }
  .bold{
    font-weight: bold;
  }
  .right{
    width: 400px;
  }
  
  /* container for the print button*/
  footer{
    position: fixed;
    bottom: 10px;
    width: 100%;
    z-index: 1;
    padding: 10px;
  }
  #print{
    text-align: center;
    width: 100px;
    font-size: 20px;
    letter-spacing: 2px;
    float: right;
    margin-right: 30px;
  }
  #print:hover{
    opacity: .1;
    cursor: pointer;
  }