html {
  font-family: "open-sans", sans-serif;
  font-size: 16px;
}

h2 {
  margin: 2em 0 1em;
  color: #111;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.75;
}

.page {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  padding: 0;
  margin: 0;
}

.block {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 16px;
  margin: 0 auto;
}
.block.is-hidden {
  display: none;
}

.badge {
  width: 80vw;
  max-width: 280px;
  margin: 8px 0;
  opacity: 0.7;
}
.badge img {
  width: 100%;
  height: auto;
}
.badge.is-active {
  opacity: 1;
}

.loading-bar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #002750;
}
.loading-bar::after {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation-duration: 4.5s;
  animation-name: loading;
  animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  background-color: #6c81a4;
  content: "";
}
@media (orientation: landscape) {
  .loading-bar {
    height: 8px;
  }
}
.loading-bar.is-hidden {
  display: none;
}

@keyframes loading {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.logo {
  position: relative;
  overflow: hidden;
  width: 80vw;
  max-width: 600px;
  margin: 3em auto 1.5em;
}
.logo img {
  width: 100%;
  height: auto;
}
@media (orientation: landscape) {
  .logo {
    margin-bottom: 1em;
  }
}

.button {
  padding: 0.5em 2.5em;
  border: 2px solid #002750;
  background-color: #002750;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  text-decoration: none;
}
.button:hover {
  box-shadow: 0 8px 10px -8px rgba(0, 0, 0, 0.4), 0 0 4px -1px rgba(0, 0, 0, 0.2);
}

body {
  background-color: #fff;
}
