#content {
  padding-top: 20px;
  width: 50%;
  margin-left: 25%;
  margin-right: 25%;
}

/*==========  Non-Mobile First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {

}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {

  #content {
    padding-left: 0px;
    width: 100%;
    margin: 0px;
    padding: 10px;
  }

  h1 {
    font-size: 25px;
    margin-left: 30px;
  }

}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {

}

/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {

}
