@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500&display=swap');
body{
    margin: 0;
    padding: 0;
    font-family: 'Poppins' sans-serif;
}

*{
    box-sizing: border-box;
}

.table{
    width:100%;
    border-collapse:collapse;
    margin:25px 10px ;
}

.table td, .table th{
    padding: 12px 15px;
    border: 1px solid #ddd;
    text-align: center;
    font-size: 16px;
}

.table th{
    background-color: #e23d3dee;
    color: #ffff;
}

.table tbody tr:nth-child(even){
    background-color: #f5f5f5;
}

/*responsive*/

@media(max-width:500px){
    .table thead{
        display: none;
    }
    .table, .table tbody, .table tr .table td{
        display: block;
        width: 100%;
        font-size: 12px;
    }
    .table tr{
        margin-bottom: 15px;
    }
    
    
}