/* Box Model Hack */
* {
  box-sizing: border-box;
}

/* Clear fix hack */
.clearfix:after {
     content: ".";
     display: block;
     clear: both;
     visibility: hidden;
     line-height: 0;
     height: 0;
}

.clear {
	clear: both;
}


/* Additional Styles*/

body{
  text-align:center;
  padding:0;
  margin:0;
  border:0;
  background-color:rgb(242,242,242);
}

main{
  visibility:hidden;
  position:fixed;
}

#main_image{
  max-width:640px;
  min-height:300px;
  width:100%;
  border-right:solid white 40px;
  border-left:solid white 40px;
  border-bottom:white 100%;
}

@media (max-width:660px) {
  #main_image{
    border:0;
    border:0;
  }
}