body {
    display: flex;
    font-family: "Ubuntu", sans-serif;
    max-width: 700px;
    margin: 0 auto;
    justify-content: center;
}

table {
    margin-top: 5rem;
    border: 1px solid #000;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

thead tr th {
    font-size: 1.7rem;
    background-color: #F79F79;
}

thead tr:nth-child(2) th {
    background-color: #F7D08A;
    font-size: 1rem;
}

tbody tr td {
    background-color: #EBF4B8;
}

tbody tr:nth-child(even) td {
    background-color: #E1EE96;
}

tbody tr:nth-child(4) td:nth-child(3) {
    background-color: #F7D08A;
}

tbody tr:nth-child(5) td:nth-child(1) {
    font-style: italic;
}

tr,
td,
th {
    padding: 0.8rem;
    border: 0.5px solid #000;
    text-align: center;
}

tfoot {
    background-color: #F79F79;
    font-size: 0.8rem;
}

@media only screen and (max-width: 25em) {
    tbody {
        font-size: 0.8rem;
    }
    thead tr:first-child th {
        font-size: 1.3rem;
    }
    thead tr:nth-child(2) th {
        font-size: 0.8rem;
    }
    tfoot {
        font-size: 0.7rem;
    }
}