/*body section h2 {
    text-align: center;
}*/

footer {
    clear: both;
}

section img {
    margin: auto;
    display: block;
}

#sections {
    width: 100%;
    overflow: auto;
    padding-top: 35px;
}

section a {
    display: block;
    float: left;
    width: 12.5%;
}

section button {
    border: none;
    background-color: #6CC24A;
    padding: 5px;
    color: #fff;
    display: block;
    margin: auto;
    align-items: center;
}

section a {
    text-decoration: none;
}

.mobile {
    display: none;
}

@media screen and (max-width: 960px) {
    section img {
        width: 100%;
        height: 100%;
    }

    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }
}

@media screen and (max-width: 600px) {
    section a {
        width: 25%;
        margin-bottom: 20px;
    }

    body {
        background-color: antiquewhite;
    }
}

