html {
  width: 100%;
  height: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  font-family: 'Roboto Slab', Helvetica, Arial, sans-serif;
}

body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  font-size: 1em;
  line-height: 1.25rem;
  color: #000;
  background-color: rgba(0, 0, 0, 0.6);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.125rem;
  line-height: 1.25rem;
}

p {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

a {
  text-decoration: underline;
  color: #08a9f4;
}

.app {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.widget {
  will-change: opacity;
  animation: appear 1s cubic-bezier(0.2, 1, 0.7, 1) backwards;
}

.ie-message {
  position: absolute;
  top: 50%;
  left: 50%;
  display: none;
  font-size: 30px;
  line-height: 1.5;
  text-align: center;
  color: white;
  transform: translate(-50%, -50%);
}

@keyframes appear {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
