:root {
  color-scheme: dark;
  font-family: Arial, Helvetica, sans-serif;
  background: #000;
  color: #fff;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background: #000;
}

.note {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  min-height: 100vh;
  padding: 72px 28px;
}

h1 {
  margin: 0;
  max-width: 640px;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
}

p {
  margin: 18px 0 0;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0;
  color: #bdbdbd;
}

@media (min-width: 760px) {
  .note {
    padding: 96px 84px;
  }

  h1 {
    font-size: 42px;
  }
}
