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

html, body {
  height: 100%;
}

body {
  font-family: 'Heebo', sans-serif;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.container {
  max-width: 600px;
}

.logo {
  max-width: 100%;
  width: 400px;
  margin-bottom: 100px;
}

h1 {
  color: #0079C1;
  font-size: 80px;
  font-weight: 700;
  line-height: 100px;
  margin-bottom: 24px;
}

.divider {
  width: 240px;
  height: 1px;
  background: #ccc;
  margin: 0 auto 24px;
}

p {
  color: #000;
  font-size: 24px;
  font-weight: 400;
}

.footer {
  position: fixed;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
}

.footer a {
  color: #888;
  font-size: 12px;
  text-decoration: none;
  margin: 0 10px;
}

.footer a:hover {
  color: #0079C1;
}

/* Content pages (privacy, terms) */
.content-page {
  display: block;
  padding: 40px 20px;
}

.content-page .logo {
  width: 200px;
  margin-bottom: 40px;
}

.content-page .content {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.content-page h1 {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.content-page .version {
  color: #888;
  font-size: 14px;
  margin-bottom: 32px;
}

.content-page h2 {
  color: #0079C1;
  font-size: 24px;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 16px;
}

.content-page h3 {
  color: #333;
  font-size: 18px;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 12px;
}

.content-page p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.content-page ul,
.content-page ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

.content-page li {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.content-page a {
  color: #0079C1;
}

.content-page .footer {
  position: static;
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid #ccc;
}

@media (max-width: 480px) {
  .logo {
    width: 280px;
  }

  h1 {
    font-size: 32px;
  }

  p {
    font-size: 16px;
  }

  .content-page h1 {
    font-size: 28px;
  }

  .content-page h2 {
    font-size: 20px;
  }
}
