* {
  box-sizing: border-box;
}
body {
  font-family: 'Lato', sans-serif;
  line-height: 1.5;
  margin: 0px;
  color: #696969;
  background-color: white;
}
.container {
  width: 960px;
  margin: auto;
  background-color: white;
}
.header {
  display: flex;
  justify-content: space-between;
  border-bottom: 5px solid #d3d3d3;
  padding-bottom: 20px;
  padding-top: 20px;
  margin-bottom: 40px;
}
.logo {
  height: 140px;
  width: auto;
}
.agencyPic {
  width: 960px;
  height: auto;
}
.columns {
  display: flex;
  justify-content: space-between;
}
.muffins, .apps, .buycicle, .ragged {
  width: 230px;
  margin-bottom: 30px;
}
.muffinsPic, .appsPic, .buyciclePic, .raggedPic {
  width: 230px;
  height: auto;
}
h1 {
  font-size: 60px;
  font-family: 'Oswald', sans-serif;
  margin: 0px;
}
h3 {
  font-size: 30px;
  margin: 0px;
  text-align: right;
}
h2 {
  font-size: 60px;
  margin-bottom: 20px;
  text-align: center;
}
h4 {
  font-size: 30px;
  margin: 0px;
  color: #fd3800;
  text-align: center;
}
.footer {
  margin-top: 30px;
  margin-bottom: 60px;
  border-top: 5px solid #d3d3d3;
  padding-top: 30px;
  text-align: center;
}
a {
  color: #fd3800;
  text-decoration: none;
}
@media (max-width: 960px) {
  .container {
    width: 640px;
  }
  .columns {
    flex-wrap: wrap;
  }
  .agencyPic {
    width: 100%;
  }
  h1, h2 {
    font-size: 46px;
  }
  h3, h4 {
    font-size: 24px;
  }
  .logo {
    height: 110px;
  }
  .muffins, .apps, .buycicle, .ragged {
    width: 310px;
  }
  .muffinsPic, .appsPic, .buyciclePic, .raggedPic {
    width: 310px;
  }
}
@media (max-width: 640px) {
  .container {
    width: 90%;
  }
  .muffins, .apps, .buycicle, .ragged {
    width: 100%;
  }
  .muffinsPic, .appsPic, .buyciclePic, .raggedPic {
    width: 100%;
  }
  .header {
    display: block;
    border: none;
    margin-bottom: 0px;
  }
  .headerLogo {
    text-align: center;
  }
  h1, h2, h3, h4 {
    text-align: center;
  }
  .footer {
    border: none;
  }
  p {
    font-size: 18px;
    text-align: center;
  }
}