/****** Prevents iPhone from resizing in landscape mode ******/

* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

html  {
  -webkit-text-size-adjust: none;
}

body {
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300; /*also loaded 600 for bold*/
}

.container {
  padding: 0 2%;
}

h1 {
  color: red;
  font-size: 34px;
  margin-bottom: 20px;
}

h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.tablet, .desktop {
  display: none;
}

footer {
  margin-top: 20px;
  width: 100%;
  padding: 10px 0;
  text-align: center;
  background: white;
  color: black;
  position: absolute;
  bottom: 0;
}
