@font-face {
  font-family: 'SF Pro';
  src: url("./SFProDisplay-Thin.ttf");
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'SF Pro';
}

.centered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

header h1 {
  text-align: center;
}

header .frame {
  width: 600px;
}

header .frame img {
  width: 100%;
}

header .frame .boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 10px;
}

header .frame .boxes .box {
  width: 140px;
  height: 100px;
  background-color: RGBA(0, 0, 0, 0.2);
  -webkit-box-shadow: 4px 4px RGBA(0, 0, 0, 0.3);
          box-shadow: 4px 4px RGBA(0, 0, 0, 0.3);
}

header .frame .boxes .box p {
  margin: 0;
  padding: 3px;
}

header .frame .boxes .box .title {
  background-color: black;
  color: white;
}

header .frame .boxes .box .description {
  margin: 0;
}

.sections {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 50px 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.sections .section {
  margin: 20px 20px;
  width: 300px;
}

.sections .section h1 {
  margin: 0;
}

.sections .section p {
  margin-bottom: 0;
  margin-top: 10px;
}
/*# sourceMappingURL=style.css.map */