:root {
  font-family: Inter, sans-serif;
  font-feature-settings: 'liga' 1, 'calt' 1; /* fix for Chrome */
}
@supports (font-variation-settings: normal) {
  :root { font-family: InterVariable, sans-serif; }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    font-size: 16px;
    line-height: 1.55em;
    color: #000;
    display: grid;
    place-items: center;
    height: 100vh;
}

div {
    max-width: 372px;
}

p {
    margin-bottom: 0.75em;
}

.emphasis, .endline {
    font-style: italic;
}

.endline {
    color: #555;
}

div.copytext {
    max-width: 100%;
    margin: 24px 0 24px 0;
}

img.icon {
    margin-top: 24px;
}

@media (max-width: 500px) {
  body {
    padding: 64px 40px;
    place-items: start center;
  }
}