h1{
    text-align: center;
    font-size: 19px;
    margin: 15px 0;
    padding: 15px;
    color: var(--delirest--light);
    border: 1px dashed var(--delirest--lighter);
    text-transform: uppercase;
}
table{
    width: 100%;
    border-collapse: collapse;
}
th{
    padding: 10px;
    border-bottom: 2px solid var(--delirest--lightest);
}
th:nth-of-type(1){
    text-align: left;
}
tbody tr{
    cursor: pointer;
    line-height: 35px;
}
tbody tr:nth-child(even){
    background-color: var(--white--dark);
}
tbody tr:hover{
    background-color: var(--delirest--lightest);
}
td{
    padding: 5px;
}
td:nth-of-type(1){
    width: 80%;
}
td:nth-of-type(2){
    width: 20%;
    text-align: center;
}
td img{
    height: 35px;
    border-radius: 5px;
}
td button{
    width: 100%;
    border: none;
    outline: none;
    padding: 5px;
    cursor: pointer;
}