.footer_container {
    display: grid;
    grid-template-columns: 1fr;
    grid-column-gap: 1rem;
}

.one_column {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.two_columns {
    display:grid;
    margin-top: 2rem;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: .5rem;
    justify-self: center;
}

.footer_logo {
    width:200px;
    justify-self: center;
}


.brand_slogan {
    text-align: center;
}

.brand_slogan span {
    color: #f8b031;
    font-weight: 600;
    font-size: 1.8rem;
}

/* separating the header from the links to provide hierarchy*/
div h3 {
    margin-bottom: 2rem;
}

div ul {
    list-style: none;
}
/* separating links in the form*/
div ul li {
    margin-bottom: 1rem;
}

div ul li a {
    text-decoration: none;
    color: #fff;
}

.contact_info {
    margin-bottom: 1rem;
}

/* adding the logo and slogan to the bottom row*/
@media (min-width: 700px) {
    .footer_container {
        grid-template-columns: 1fr 1fr;
        grid-column-gap: 0;
    }
    .two_columns {
        grid-column-gap: 1.7rem;
    }
}

