* {
    margin: 0; padding: 0; border: 0; box-sizing: border-box;
}

body {
    background-color: lightslategray;
    color: aliceblue;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;

}

h1 {
    text-align: center;
    font-weight: normal;
    border-bottom: 2px dotted orchid;
    padding: 8px;
}

h1 + p {
    text-align: center;
    color: #FFC;
    margin-bottom: 40px;
}

article {
    border: 4px solid orange;
    padding: 8px;
}

table.training_plan {
    border: 4px solid darkmagenta;
    margin: 40px auto;
    font-size: 1.4em;
    border-collapse: collapse;
}

.training_plan th, .training_plan td {
    border: 3px solid darkorchid;
    padding: 8px;
    text-align: center;
    display: table-cell;
    height: .6in;
}

.special {
    background-color: saddlebrown;
    
}

.training_plan tr:nth-child(odd) {
    background-color: lightblue;
}

.training_plan tr:nth-child(even) {
    background-color: lightseagreen;
}

.quote {
    font-style: italic;
    font-family: cursive;
    text-align: center;
    line-height: 1.4;
    max-width: 60ch;
    margin: 10px auto;
    color: blanchedalmond;
}

.quote .author {
    display: block;
    text-align: center;
    font-style: normal;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: bold;
}

.print_only {
    display: none;
}



/* styles for print version */
@media print {

    .print_only {
        display: block;
    }


    .screen_only {
        display: none;
    }

    body {
        font-family: 'Times New Roman', Times, serif;
        color: black;
    }

    h1 + p {
        color: black;
    }

    a {
        text-decoration: none;
        color: black;
    }

    a::after {
        content:" (" attr(href) ")";
    }

    table.training_plan {
        font-size: 1em;
        font-family: 'Courier New', Courier, monospace;
        border: 0px;
    }

    .training_plan td, .training_plan th {
        height: auto;
        border-left: 0px;
        border-right: 0px;
    }


}

