*,
*::before,
*::after {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

 :root {
  --black: #171717;
}

body {
  margin: 0;
  padding: 0;
  color: var(--black);
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  margin: 0;
}

.quote {
  width: 70vw;
  font-style: italic;
  color: var(--black);
  font-size: 18px;
  line-height: 1.5;
}

.link {
  color: #0073e6;
  text-decoration: none;
}