
/* Below is the reset rule */
* {
    margin: 0; 
    padding: 0; 
    border: 0; 
    box-sizing: border-box; /* this makes it so 500px is truly 500px all around */
  

}
body {

    background-color: #3D348B;
  
    color: #e0e2db;
  
    font-family: Verdana, Geneva, Tahoma, sans-serif;
  
    padding: 12px;
  
  }

  h1{
    text-align: center;
    margin-bottom: 32px;
    font-weight: normal;
  }

  h1 span{
    color: #ff2;

  }

  p{
    line-height: 1.4;
    font-style: italic;
    margin-bottom: 1em;
  }

  dl{
    border: 2px solid rgb(23, 17, 17);
  }

  dt{
    color: #ff2;
    font-weight: bold;
  }

  dd{
    margin-left: 2em;
    margin-top: 4px;
    margin-bottom: 12px;
    line-height: 1.4;

  }

  dd:hover{
background-color: aliceblue;
color: #3D348B;
  }

  table{
    border: 2px solid #ff2;
    width: 80%;
    margin: 24px auto;
    border-collapse: collapse;
  }

  caption{
    margin: 4px 0;
  }

  th, td{
    border: 2px solid yellow;
    padding: 8px;
  }

  tr:first-child th,
  tr:first-child td{
    width: 13%;
  }

  tr:first-child th:first-child,
  tr:first-child td{
    background-color: rgb(239, 172, 221);
    width: 9%;
  }

  .special{
    color: #ff2;
    font-weight: bold;
    background-color: black;
  }


  tr:nth-child(odd){
    background-color: #5f56ad;
  }

  tr:first-child{
    background-color: black;
    color: lightgrey;
  }

  .inspirational_quote{
    color: #ff2;
    margin: 12px;
    padding: 8px;
    line-height: 1.6;
    display: none;

  }

  .inspirational_quote span{
    display: block;
    text-align: right;
    margin-top: 32px;
    color: aliceblue;
    font-weight: bold;
  }

  @media print{

    body{
        margin: .25in;
    }
    
    header + p{
        display: none;
    }  

h1{
    font-size: 16pt;
}

    dl{
        display: none;
    }

    body, td, th, p{
        color: black;
        background-color: white;
    }

    td, th{
        border-left: 0;
        border-right: 0;
        font-size: 10pt;
        padding: 4px;
    }

    .inspirational_quote{
        display: block;
    }

    .inspirational_quote span{
        display: inline;
    }
    .inspirational_quote span::before{
        content: " --";
    }

    table{
        width: 100%;
    }
  }

