* {
    margin: 0; padding: 0; border: 0; box-sizing: border-box;
}

:root {
    font-size: 62.5%;
}

body {
    background-color: green;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

header {
    box-shadow: 3px 3px 2px #222;
    margin: 20px;
    padding: 10px;
    border-top: 1px solid #222;
    border-left: 1px solid #222;
}

h1 {
    font-size: 4rem;
    text-align: center;
}

blockquote.author {
    text-align: left;
    font-style: italic;
    font-variant: small-caps;
    width: 70%;
    margin: 10px auto;
    font-size: 1.5rem;
    line-height: 1.4;
}

p.author {
    font-size: 2rem;
    color: #456;
    text-align: right;
    margin-right: 20px;
}

p.author::before {
    content: "\2014" " ";
}

.printonly {
    display: none;
}

#practicetable {
    border: 2px solid red;
    width: 400px;
    margin: 20px auto;
}

#practicetable td {
    border: 2px solid black;
    height: 60px;
    font-size: 3rem;
}

#practicetable th {
    font-size: 3rem;
}

table#hm-schedule {
    page-break-before: always;
    border: 2px solid #222;
    width: 6in;
    margin: 50px auto;
    border-collapse: collapse;
}

#hm-schedule td, #hm-schedule th {
    border-bottom: 2px solid #434;
    border-right: 2px dotted #434;
    font-size: 1.3rem;
    padding: 3px;
    background-color: #EEE;
}

#hm-schedule th:first-child {
    background-color: #123;
    color: #EEE;
    width: 70px;
    padding: 10px 4px;
}

#hm-schedule th:not(th:first-child) {
    background-color: #456;
    color: #EEE;
    width: 100px;
}

#hm-schedule tr:nth-child(odd) td {
    background-color: yellowgreen;
}









@media print {
    .printonly {
        display: block;
    }

    #hm-schedule td, #hm-schedule th {
        border-bottom: 2px solid #333;
        border-right: 2px dotted #333;
        background-color: white;
        color: black;
    }

    #hm-schedule th:first-child {
        background-color: white;
        color: black;
    }
    
    #hm-schedule th:not(th:first-child) {
        background-color: white;
        color: black;
    }
}