

h1 {
    text-align: center;
    color:  #dc262b;
    margin-top: 5vh;
    margin-bottom: 5vh;
}

.table-container {
    display: flex;
    justify-content: center;
    padding: 10px;
    overflow-x: auto;
}

table {
    width: 95%;
    margin: 0 auto;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    background: #fff;
}

th, td {
    border: 1px solid #ddd;
    padding: 1em;
    text-align: center;
    vertical-align: top;
}

th {
    background-color:  #dc262b;
    color: white;
}

.head{
    display: none;
}
main{
    min-height: 70vh;
}
@media (max-width: 768px) {
    table {
        display: flex;
        width: 100%;
        flex-direction: column;
        border: none;
    }
    thead{
        display: none;
    }
    
    .head{
        display: block;
    }
    p{
        text-align: center;
        
    }
    tbody tr {
        display: flex;
        flex-direction: column;
        border-bottom: 1px solid #ddd;
        margin-bottom: 10px;
    }

    td {
        text-align: left;
        padding: 10px;
        border: none;
    }

    td:before {
        font-weight: bold;
        text-transform: uppercase;
        color: #5A67D8;
    }
}
