footer {
    background-color: #1B1B1B;
    width: 100%;
    color: white;
    padding-block: 5rem;
}

footer h2 {
    border-bottom: 1px solid white;
    padding-bottom: 1rem;
}

#FooterMainContent {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 1rem;
}

@media (max-width: 600px) {
    #FooterMainContent {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
}

footer a {
    color: white;
}