

.grid {
    display: grid;
    grid-template-columns: min-content auto 75px 1fr;


}


.grid div:nth-child(even) {
    background-color: red;
}

.grid div:nth-child(odd) {
    background-color: green;
}