* {margin: 0;padding: 0;border: 0;box-sizing:border-box;}

body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: #234;
    background-color: #deb986;
    padding: 12px;
}
    h1 {
        text-align: center;
        margin-bottom: 32px;
        font-weight: normal;

    }

   
    table {
        border: 2px solid orange;
        width: 80%;
        margin: 24px auto;
        border-collapse: collapse;
    }

    th, td {
        border: 2px solid #22790c;
        padding: 10px;
       
    }
    
    tr:first-child th,
tr:first-child td {
  width: 13%;
}   

    tr:first-child th:first-child,
    tr:first-child td:first-child {
      background-color: rgb(192, 231, 255);
      width: 15%;
    }

  


    tr:first-child {
        background-color: #c0df85;
    }

  
    @media print {

        body {
            margin: .25in;
        }

     
        body, td, th, p {
            color: black;
            background-color: white;
        } 
        table {
            width: 100%;
        }


        td, th {
            border-left: 0;
            border-right: 0;
            font-size: 10pt;
            padding: 4px;
        }
    }

   


