* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
    text-align: center;
}


.container {
    border: solid 1px rgba(255, 255, 255, 0.2);
}

table {
    color: #3f33ff;
    font-size: 14px;
    table-layout: fixed;
    border-collapse: collapse;
    text-align: center;
}

thead {
    background: rgba(31, 97, 141, 0.4);
}

th {
    padding: 20px 15px ;
    font-weight: 700;
    text-transform: uppercase;
}

td {
    padding: 15px;
    border-bottom: solid 1px rgba(255, 255, 255, 0.2);
}


tbody tr {
    cursor: pointer;
}

tbody tr:hover {
    background: rgba(31, 97, 141, 0.4);
}