@import url("https://fonts.googleapis.com/css?family=Roboto:400,400i,700,700i");

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Roboto", sans-serif;
  margin: 30px;
  font-size: 16px;
  background-color: #f2f5f7;
  color: #2d3844;
}

body {
  display: grid;
  grid-gap: 80px;
}

.fake-component {
  width: 100%;
  height: 200px;
  background: repeating-linear-gradient(
    45deg,
    rgba(45, 56, 68, 0.075),
    rgba(45, 56, 68, 0.075) 10px,
    rgba(45, 56, 68, 0.15) 10px,
    rgba(45, 56, 68, 0.15) 20px
  );
}

h4, p {
  margin: 0;
}

.line > * {
  margin: 0.5em;
  vertical-align: middle;
}

.line:nth-of-type(3n - 1) {
  font-size: 24px;
}

.line:nth-of-type(3n) {
  font-size: 32px;
}
