main {
    display: grid;
    gap: 0.2rem;
    justify-content: space-evenly;
    align-items: center;
}

@media only screen and (max-width: 880px) {
    main {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    #underFooter {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
}
