Inter font

by Spencer Smith

HTML

<link href="https://rsms.me/inter/inter.css" rel="stylesheet">

<h1>Let your reviews do the talking.</h1>

<button>Create Account for Free</button>

CSS

body {
  font-family: Inter,Helvetica,arial,sans-serif;
  margin: 50px;
}

h1 {
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 40px;
}

button {
  border: 0;
  font-size: 16px;
  font-weight: 700;
  font-family: Inter,Helvetica,sans-serif;
  border-radius: 4px;
  height: 40px;
  padding: 0 24px;
  background-color: mediumseagreen;
  color: #fff;
  -webkit-font-smoothing: antialiased;
}