@import url('https://fonts.googleapis.com/css2?family=Marhey&display=swap');

body {
    background-color: lightslategray;
    font-family: 'Marhey';
}


h1 {
    color: darkred;
    font-size: 4rem;
    text-align: center;
    text-shadow: 1px 1px 0px whitesmoke;
}

table.workout {
    border: 3px solid darkblue;
    width: 95%;
    margin: 9px auto;
    background-color: ghostwhite;
    font-size: 2rem;
    border-collapse: collapse;
}

td, th {
    border: .5px solid hotpink;
    padding: 4px;
}

.workout .days th, th[scope=row] {
    font-size: 2.2rem;
    font-weight: bold;
    color: #EEE;
    background-color: navy;
    height: 70px;
}

tr:nth-child(odd) td:nth-child(even),
tr:nth-child(even) td:nth-child(odd) {
    background-color: gainsboro;
}

table caption {
    color: transparent;
}

@media print {

table caption {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: smaller;
    color: #222;
    background-color: whitesmoke;
    text-align: center;
    caption-side: bottom;
    padding: 9px;
}


}