@media screen and (min-width: 800px) {
    #footer{
        width: 100%;
        /*max-width: 700px;*/
    }
    #footer div {
        font-size: 1.2em;
    }

}

@media screen and (min-width: 420px) and (max-width: 799px) {
    #footer{
        width: 100%;
    }
    #footer div {
        font-size: 1.2em;
    }

 }

 @media screen and (min-width: 0px) and (max-width: 419px) {
    #footer{
        width: 100%;
        min-width: 320px;
    }

    #footer div {
        font-size: 1em;
    }

 }


 #footer {
    clear: both;
    position: absolute;
    bottom: 0;
    margin-right: 1px;
    line-height: 20px;
    height: 20px;
    color: #ffffff;
    background-color: #4d4d4d;
}
#footer div {
    /*padding-left: 20px;*/
    text-align: center;
}
#footer a,
#footer a:link,
#footer a:visited {
    color: #fff;
    font-weight: normal;
    text-decoration: none;
}
#footer a:hover {
    color: #fff;
}

