@import url(https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css);

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

table {
    table-layout: fixed;
    font-family: Arial, Helvetica, sans-serif;
}
th, td {
    border: 1px solid green;
    color: green;
    padding: .5rem;
    width: 8rem;
}

th {
    background-color: limegreen;
    color: white;
    border-color: gray;
}
tr:nth-child(even):not(:last-child) {
    background-color: greenyellow;
}

@media (max-width: 768px) {
    :is(td, th):nth-child(3),
    :is(td, th):nth-child(5) {
        display: none;
    }
}
@media (max-width: 480px) {
    :is(td, th):nth-child(2),
    :is(td, th):nth-child(4) {
        display: none;
    }
}