* {
  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;
}

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

  h1 {
    font-size: 32px;
  }

  p {
    font-size: 16px;
  }
}
