* {
    margin: 0; padding: 0; border: 0; box-sizing: border-box;
}
:root {
    font-size: 62.5%;
}
body {
    background-color: #CDC;
    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;
}
.homeB {
    font-size: 3rem;
    text-align: center;
    margin-top: 50px;
}
.homeB a {
    background-color: olive;
    padding: 20px;
    border-radius: 30px;
    margin-top: 50px;
    color: rgb(203, 231, 145);
    text-decoration: none;
    box-shadow: 4px 4px 6px rgb(85, 84, 84);
    border: 4px solid rgb(96, 156, 88);
}
.homeB a:hover {
    background-color: rgb(228, 228, 135);
    color: rgb(72, 90, 36);
    border: 4px solid rgb(57, 85, 53);
}

h1 {
    font-size: 4.5rem;
    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: grey;
    text-align: right;
    margin-right: 20px;
}
p.author::before {
    content: '\2014' ' '; /* Mdash with space after */
}
.author {
    display: none;
} 
.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;
    font-weight: normal;
    text-align: left;
}
table#hm-schedule {
    page-break-before: always;
    border: 2px solid #222;
    width: 6in;
    margin: 50px auto;
    border-collapse: collapse;
}
table#hm-schedule caption {
    margin-bottom: 10px;
}
#hm-schedule td, #hm-schedule th {
    border-bottom: 1px solid #434;
    border-right: 1px solid #434;
    font-size: 1.3rem;
    padding: 3px;
    width: 12.5%;
    background-color: rgba(250,250,250, .5);
}
#hm-schedule th:first-child {
    background-color: pink;
    width: 70px;
    padding: 10px 4px;
}
#hm-schedule th:not(first-child) {
    background-color: yellow;
}
#hm-schedule tr:nth-child(odd) td {
    background-color: yellowgreen;
}


















@media print {

    .printonly {
        display: block;
    }
}
