.result {
    margin: 40px 0;
    border-radius: 50px;
}

.result div {
    align-items: center;
    justify-content: center;
}

.head div p {
    text-align: center;
    font-size: 12px;
    color: #F1F3F4;
}

th {
    background: #3A4149;
    color: #F1F3F4;
    height: 50px;
    border-radius: 10px;
    text-align: center;
    font-weight: 900;
    font-size: 70%;
}

td {
    background: #F1F3F4;
    color: #ED0000;
    height: 50px;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    font-size: 70%;
}

table{
    width: 100%;
}

@media(max-width:800px) {

    table{
        font-size: 80%;
    }

    th {
        border-radius: 5px;
    }
    
    td {
        border-radius: 5px;
    }
}

@media(max-width:480px) {

    table{
        font-size: 70%;
    }
    th {
        border-radius: 5px;
    }
    
    td {
        border-radius: 5px;
    }
}