@font-face {
  font-family: opensans-regular;
  src: url("https://s3.glbimg.com/cdn/fonts/opensans/regular.woff2") format("woff2"),
    url("https://s3.glbimg.com/cdn/fonts/opensans/regular.woff") format("woff"),
    url("https://s3.glbimg.com/cdn/fonts/opensans/regular.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: opensans-regular;
  src: url("https://s3.glbimg.com/cdn/fonts/opensans/bold.woff2") format("woff2"),
    url("https://s3.glbimg.com/cdn/fonts/opensans/bold.woff") format("woff"),
    url("https://s3.glbimg.com/cdn/fonts/opensans/bold.ttf") format("truetype");
  font-style: bold;
  font-weight: bold;
}

* {
  box-sizing: border-box;
  margin: auto;
}

body {
  font-family: opensans-regular, helvetica, arial, sans-serif;
  color: #666;
}

.header {
  border-top: 8px solid #0669de;
  height: auto;
  transition: none;
  display: block;
  padding: 8px 0px 12px;
}

.header {
  text-align: center;
}
.header #logo {
  margin-top: 1rem;
}

.header #logo path {
  fill: #0669de;
}

.content {
  padding: 2rem;
}

.content h1 {
  text-align: center;
  font-size: 1.1rem;
  font-weight: bold;
  color: #363636;
}

.content h2 {
  margin-top: 0.75rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: normal;
  color: #999;
}

.actions {
  bottom: 50px;
  position: absolute;
  width: 100%;
}
.button {
  background-color: #0669de;
  color: white;
  border-radius: 3px;
  opacity: 1;
  font-size: 0.75rem;
  display: block;
  cursor: pointer;
  text-transform: uppercase;
  width: 280px;
  padding: 10px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
}
.button:hover {
  opacity: 0.9;
}

.button.light {
  background-color: #fff;
  color: #0669de;
}

.dark .header {
  border-top-color: #444;
}

.dark .button {
  background: #444;
}
