#highScoresList {
    list-style: none;
    padding-left: 0;
    margin-bottom: 4 rem;

}


table{
    max-width: 95%;
}

.high-score {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}
tr {
    border-bottom: 1px solid #000;
}
tr:nth-child(even) {
    background-color: rgba(150, 212, 212, 0.4);
  }

td {
    padding: 3px;
    overflow: hidden;
    max-width: 30%;
    text-align: left;
}

tr:hover {
    padding: 10px;
    white-space: unset;
    overflow:unset;
    text-overflow:unset;
 
    background-color: #56a5eb;

}


.high-score:hover {
    transform: scale(1.1);
    transition: 300ms;
}