* {
    margin: 0; padding: 0; border: 0; box-sizing: border-box;
}

body {
    background-color: black;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    padding: 12px;
}

h1 {
    text-align: center;
    margin-bottom: 32px;
    font-weight: normal
}

h1 span {
    color: yellow
}

p {
    line-height: 1.4;
    font-style: italic;
    margin-bottom: 1em;
}

dl {
    border: 2px solid red;
    padding: 12px;
}

dt {
    color: purple;
    font-weight: bold;
}

dd {
    margin-left: 2em;
    margin-top: 4px;
    margin-bottom: 12px;
    line-height: 1.4;
}

dd:hover {
    background-color: orange;
    color: black;
}

table {
    border: 2px solid green;
    width: 80%;
    margin: 24px auto;
    border-collapse: collapse;
}

caption {
    margin: 4px 0;
}

th, td {
    border: 2px solid rgb(0, 183, 255);
    padding: 8px;
    width: 12.5%;
}

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 {
    color: aqua;
    font-weight: bold;
    background-color: gray;
}

tr:nth-child(odd) {
    background-color: rgba(169, 169, 169, 0.39);
}

tr:first-child {
    background-color: gray;
    color: white
}

.inspirational_quote {
    color: rgb(255, 0, 0);
    margin: 12px;
    border: 2px solid turquoise;
    padding: 8px;
    line-height: 1.4;
}

.inspirational_quote span {
    display: block;
    text-align: right;
    margin-top: 32px;
    color: red;
    font-weight: bold;
}

@media print {
    dl {
        display: none;
    }

    body, td, th, p {
        color: black;
        background-color: white;
    }

    table {
        width: 100%;
    }

    td, tr {
        border-left: 0;
        border-right: 0;
        font-size: 10pt;
    }
    
    .inspirational_quote {
        display: block;
    }

    .inspirational_quote span {
        display: inline;
    }

    .inspirational_quote span::before {
        content: " ";
    }
}