#k1, #k2 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#k2 {
    flex-flow: column wrap;
}
table {
    border: 1px solid black;
    border-collapse: collapse;
}
th {
    background-color: tomato;
    color: white;
    padding: 10px;
}
td {
    background-color: #bbb;
    padding: 10px;
}
.dark td {
    background-color: #ddd;
}
.divClassK2 {
    width: 80%;
    margin: 20px 0 20px 0;
    padding: 20px 0 20px 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background-color: #eee;
}
h2 {
    font-size: 35px;
    color: tomato;
}
p {
    font-weight: bold;
}