@media screen and (min-width: 1001px) {
.wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
height: 500px;
background-color: red;
}
}
@media screen and (max-width: 1000px) {
.wrapper {
display: flex;
}
}