body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: white;
    padding: 20px;
    margin: 0 auto;
}

header{
    background: violet;
    color: white;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
}

table {
    background-color: white;
    border-radius: 10px;
    width: 100%;
}
th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: violet;
    color: white;
    font-weight: bold;
}

.game-item:hover{
    background-color: cyan;
    color:purple
}

.rank{
    font-size: 20px;
    color: darkviolet;
    font-weight: bold;
    text-align: center
}

footer{
    text-align: center;
    color:grey;
    font-size: 14px;
    margin-top: 30px;
}