* {
    margin: 0;
    padding: 0;
}

body {
    font-family: sans-serif;
    font-size: 18px;
}

hr { margin-bottom: 10px}

label {
    margin: 20px;
    margin-right: 5px;
    font-size: 17px;
}

h1, p, table {
    margin: 20px;
}

table {
    border: 2px solid black;
    background-color: rgb(211, 211, 211);
    border-collapse: collapse;
}

th, td {
    padding: 10px;
    user-select: none;
    text-align: center;
    border-bottom: 2px solid black;
}

tr {
    transition: ease;
    transition-duration: 0.25s;
}

tr:hover:not(:first-child) {
    font-weight: bold;
    cursor: pointer;
    color: whitesmoke;
    text-shadow: 2px 2px 2px black;
    background-color: rgb(44, 111, 255);
}

th {
    color: whitesmoke;
    background-color: rgb(4, 167, 4);
}