*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    justify-content: center;
    align-items: center;
}
section{
    width: 100%;
    height: auto;
}
section h2{
    width: 100%;
    height: auto;
    background-color: rgb(0, 158, 34);
    color: #fff;
    padding: 10px;
    text-align: center;
    text-transform: uppercase;
}
section .container{
    width: 1280px;
    height: auto;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    box-sizing: border-box;
    background-color: rgb(228, 228, 228);
    gap: 1em;
}
section .container .row{
    background-color: rgb(228, 228, 228);
    
}
section .container .row p{
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;
    
}
/* Large desktops and laptops */
@media (min-width: 1200px) {
    
}

/* Portrait tablets and medium desktops */
@media (min-width: 992px) and (max-width: 1280px) {
    section .container {
        width: 100%;
        height: auto;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        box-sizing: border-box;
        gap: 1em;
        padding: 10px;
    }
    section .container .row p {
        font-size: 14px;
        text-transform: uppercase;
        text-align: center;
    }
    
}

/* Portrait tablets and small desktops */
@media (min-width: 768px) and (max-width: 991px) {
    section .container {
        width: 100%;
        height: auto;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        box-sizing: border-box;
        gap: 1em;
        padding: 10px;
    }
    section .container .row p {
        font-size: 14px;
        text-transform: uppercase;
        text-align: center;
    }
}

/* Landscape phones and portrait tablets */
@media (max-width: 768px) {
    section .container {
        width: 100%;
        height: auto;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        box-sizing: border-box;
        gap: 1em;
        padding: 10px;
    }
    section .container .row p {
        font-size: 14px;
        text-transform: uppercase;
        text-align: center;
    }
}

/* Landscape phones and smaller */
@media (max-width: 480px) {
    section .container {
        width: 100%;
        height: auto;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        box-sizing: border-box;
        gap: 1em;
        padding: 10px;
    }
    section .container .row p {
        font-size: 14px;
        text-transform: uppercase;
        text-align: center;
    }
}