:root {
  --color-accent: #39a0ed;
  --color-background: #fff;
  --color-badge: #edf2f7;
  --color-text: #000;
  --color-text-light: #999;
}

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

html,
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.4;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  background-color: var(--color-background);
  color: var(--color-text);
  height: 100%;
  -webkit-font-smoothing: antialiased;
  display: flex;
  justify-content: center;
  align-items: center;
}

h1 {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 1.5rem;
}

h2 {
  color: var(--color-text);
  font-size: 1.5rem !important;
}

.container {
  max-width: 750px;
}

@media (max-width: 600px) {
  html {
    font-size: 13px;
  }

  body {
    padding: 2rem;
  }

  address {
    position: initial;
  }
}
