@import url('https://rsms.me/inter/inter.css');

html { box-sizing: border-box; }
*, *::after, *::before { box-sizing: inherit; }

body {
  color: rgb(36, 34, 30);
  font-family: 'Inter', sans-serif;
  font-size: 1em;
  margin: 4em 2em;
}

@supports (font-variation-settings: normal) {
  body { font-family: 'Inter var', sans-serif; }
}

h1 {
  font-size: 2em;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0;
  display: inline-block;
  line-height: 69px;
  padding: 0 1em;
  color: #fff;
  background-color: #333;
}

.container {
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6em;
}

header p {
  color: rgba(0,0,0,.5);
  font-size: 2em;
  line-height: 1.3em;
  margin: 1.3em 0;
}

@media screen and (min-width: 600px) {
  header p {
    font-size: 2.5em;
  }
}

main .clients {
  border-left: 5px solid #e6e6e6;
  font-style: italic;
  list-style: none;
  margin: 1.5em 0;
  padding-left: 1.5em;
}
main .clients li {
  display: inline;
}
main .clients li:after {
  content: ', ';
}
main .clients li:last-child:after {
  content: '';
}

a {
  color: #4078c0;
  text-decoration: none;
}

footer {
  color: #999999;
  font-size: .9em;
  padding-top: 2em;
}
