body{
    display: grid;
    grid-template-columns: auto 400px 400px auto;
    place-items: center;
    align-items: start;
    background-color: black;
    color: white;
}

.stats{
    width: 100px;
}

.again{
    font-weight: bold;
    color:#3e87c9;
}

.again:hover{
    text-decoration: underline;
    cursor: pointer;
}

div{
    border: 0px solid black;
    display: block;
    width: auto;
}

table {
    border-collapse: collapse;
    width: 100%;
}

th{
    background-color: #3e87c9;
    color: white;
}

th, td{
    border: 1px solid #024a81;
    width: 31px;
    height: 31px;
    text-align: center;
}

@media screen and (max-width: 800px) {
    body{
        display: grid;
        grid-template-columns: auto;
        place-items: center;
        background-color: black;
        color: white;
    }
}