Equal height and width div ratios http://www.mademyday.de/css-height-equals-width-with-pure-css.html
.box{
position: relative;
width: 50%; /* desired width */
}
.box:before{
content: "";
display: block;
padding-top: 100%; /* initial ratio of 1:1*/
}