*{
    margin: 0; padding: 0; border: 0; box-sizing: border-box;
}

body {
    background-color: #5739c3 ;
    color: #c6d7eb;;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    padding: 12px;
}

h1 {
    text-align: center;
    margin-bottom: 32px;
    font-weight: normal;
    
}

h1 span {
    color: rgb(222, 127, 142);
}

p {
    line-height: 1.4;
    font-style: italic;
    margin-bottom: 1em;
}

dl {
    padding: 12px;
    border: 2px solid black;
    
}

dt {
    color: rgb(222, 127, 142);
    font-weight: bold;
}

dd {
    margin-left: 2em;
    margin-top: 4px;
    margin-bottom: 12px;
    line-height: 1.4;
}

dd:hover {
    background-color: rgb(106, 205, 106);
    color: black;
}

table {
    border: 2px solid rgb(222, 127, 142);
    width: 80%;
    margin: 24px auto;
    color: #c6d7eb;
    border-collapse:collapse;
}

caption {
    margin: 4px 0px;
}

th, td {
    border: 2px solid rgb(222, 127, 142);
    padding: 8px;
    
}

tr:first-child th,
tr:first-child td {
    width: 13%;

}

tr:first-child th:first-child,
tr:first-child td:first-child {
    width: 9%;

}

.special {
    font-weight: bold;
    color: rgb(222, 127, 142);
}

.special:hover{ 
    background-color:rgb(106, 205, 106);
    color: black;
}

tr:nth-child(odd) {
    background-color: #7a5ce7;
}

tr:first-child {
    background-color: rgb(242, 154, 168);
    color: black;
}

.inspirationalquote {
    color: rgb(222, 127, 142);
    margin: 12px;
    padding: 8px;
    display: none; /* hides element */
}

.inspirationalquote span {
    display: block;
    text-align: right;
    margin-top: 32px;
    color: #c6d7eb;
    font-weight: bold;
}
/* controls print version */
@media print {

    body {
        margin: .25in;
    }

    h1 {
        font-size: 20pt;
    }

    dl {
        display: none;
    }

    body, td, th, p {
        color: black;
        background-color: white;
    }

    table {
        width: 100%;
        font-size: 12pt;
    }

    td, th {
        border-left: 0;
        border-right: 0;
        padding: 2px;
    }

    .inspirationalquote {
        display: block;
        color: black;
    }

    .inspirationalquote span {
        display: inline;
    }

    .inspirationalquote span:before {
        content: "  --"
    }


}