При уменьшении ширины экрана меньше 550px футер начинает уезжать на верх.
Подскажите как исправить. Посмотреть сайт можно
здесь.
Код html
<footer>
<div class="copyrights">
©2016 Zhukov Gleb(gotlib)<br>
When you copy any materials on third party websites, the link to http://www.gotlib.info required!
</div>
<div class="contacts">
<i class="fa fa-phone-square" aria-hidden="true"></i> 8-912-641-3462<br>
<i class="fa fa-envelope-square" aria-hidden="true"></i> goootlib@gmail.com
</div>
</footer>
Код css
.copyrights{
float:left;
width: 350px;
}
.contacts{
width: 200px;
float:right;
margin:10px;
padding:0;
}
footer{
background:#000;
color: #7f7f7f;
width: 100%;
height: 60px;
}