html{
    font-size: 62.5%;
}
body {
    font-family: Arial, sans-serif;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
}

h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

table {
    border-collapse: collapse;
    width: 80rem;
    font-size: 1.6rem;

}

thead th {
    background: #333;
    color: #fff;
    padding: 1.2rem;
    font-size: 1.6rem;
}

tbody td {
    padding: 1.2rem;
    border: 0.1rem solid #ccc;
}

tbody tr:hover {
  background: #f1e0d1;
  color: #d2691e;
}