body {
    background-color: hsl(0, 0%, 83%);
    padding: 10px;
    font-family: sans-serif;
}

header {
    background-color: orange;
    color: white;
    text-align: center;
    padding: 15px;
    box-shadow: 0 10px 12px hsl(90, 10%, 40%), 0 8px 8px hsl(90, 10%, 80%);
    border: solid white 4px;
}

table {
    border: 2px black solid;
    border-collapse: collapse;
    width: 100%;
}

h2 {
    border-bottom: solid hsl(0, 0%, 76%);
    padding-top: 25px;
    padding-bottom: 10px;
    color: hsl(0, 1%, 35%)
}

h3 {
    font-size: medium;
}

th, td {
    border: 1px solid lightgrey;
    padding: 10px;
    text-align: left;
}

td {
    background-color: white;
}

footer {
    color: grey;
    text-align: center;
    margin-top: 50px;
}

#blue-heading {
    background-color: blue;
    color: white;
}

#grey-heading {
    background-color: hsl(170, 23%, 56%);
    color: white;
}

#turq-heading {
    background-color: aqua;
    color: white;
}

.r-align {
    text-align: right;
    color: red;
    font-weight: bold;
}