* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    /* min-height: 100vh; */
    min-height: : 30vh;
    background: linear-gradient(#364a67, #273f65);
}

.container {
    border: solid 1px rgba(255, 255, 255, 0.2);
}

table {
    color: #fff;
    /* font-size: 14px; */
    font-size: 12px;
    table-layout: fixed;
    border-collapse: collapse;
}

thead {
    background: rgba(75, 54, 227, 0.4);
}

th {
    padding: 20px 15px ;
    font-weight: 700;
    font-weight: 400;
    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(243, 103, 199, 0.4);
}