@import url('https://fonts.googleapis.com/css2?family=Courier+Prime:wght@400;700&display=swap');

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #fff;
  color: #000;
  font-family: 'Courier Prime', 'Courier New', monospace;
  font-size: 16px;
  line-height: 22.08px;
  -webkit-font-smoothing: antialiased;
}

.content {
  padding: 145px 48px 64px;
}

.content p {
  margin: 16px 0 16px 40px;
}

.content b {
  font-weight: 700;
}

.content a {
  color: #212121;
  text-decoration: none;
}

.content a:hover,
.content a:focus-visible {
  text-decoration: underline;
}

@media (max-width: 700px) {
  .content {
    padding: 72px 24px 48px;
  }
  .content p {
    margin-left: 0;
  }
}
