.history {
    padding-bottom: 100px;
}

.history-grid {
    display: grid;
    max-width: 1000px;
    grid-gap: 80px;
    grid-template-columns: 1fr 1fr;
}


@media only screen and (min-width: 701px) and (max-width: 900px) {
    .history-grid {
        grid-gap: 40px;
    }  
}  





@media only screen and (min-width: 501px) and (max-width: 700px) {
    .history-grid {
        grid-gap: 20px;
    }  

}

@media only screen and (max-width: 500px) {
    .history-grid {
        grid-gap: 40px;
        grid-template-columns: 1fr;
    }
}