.Calendar-Table {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    grid-template-rows:repeat(4, 1fr);
    grid-column-gap: 40px;
    grid-row-gap: 20px;
    justify-items: center
}

@media (max-width: 1000px) {
    .Calendar-Table {
        grid-template-columns:1fr 1fr
    }
}

@media (max-width: 768px) {
    .Calendar-Table {
        grid-template-columns:1fr
    }
}