* {
    font-family: 'Courier New', Courier, monospace;
    background-color: rgb(18, 65, 65);
    color: white;
    padding: 0;
    margin: 0;
}

table {
    width: 100%;
    align-items: center;
    text-align: center;
}

tr:hover {
    background-color: aquamarine;
}

tr:nth-child(2) {
    background-color: bisque;
}
