#footer {
    background-color: #111 !important;
    display: inline-grid !important;
    grid-template-rows: 42px !important;
    justify-self: center !important;
    width: 100% !important;
}

#copyright {
  display: inline-grid !important;
  justify-self: center !important;
}

#copyright > div > p {
    margin: 13px 5px 9px 5px !important;
    color: white !important;
    font-family: roboto !important;
    font-size: 16px !important;
    text-align: center !important;
}

@media only screen and (min-width: 600px) {
    #copyright {
        grid-template-rows: auto !important;
        grid-template-columns: auto auto !important;
    }

    #footer {
        grid-template-rows: 42px !important;
    }
}

@media only screen and (max-width: 599px) {
    #copyright {
        grid-template-rows: auto auto !important;
        grid-template-columns: auto !important;
        padding: 5px 0 !important;
    }

    #footer {
        grid-template-rows: auto !important;
    }

    #copyright > div > p {
        margin: 0 !important;
    }
}