/*
 * Bronystate 3.0 - Onboarding Page
 * Shizuka Kamishima - 2015-11-20
 */
/*
 * Uses Sass Web Fonts Mixin
 * (c)2014 Ross Penman - https://github.com/penman/Sass-Web-Fonts
 * MIT License
 */
* {
  margin: 0;
  padding: 0; }

body {
  overflow: hidden;
  color: #93B9FF;
  background-color: #061015;
  font-family: Verdana, sans-serif;
  font-size: 14px;
  width: 618;
  height: 390; }

.finger {
  animation: bounce 3s infinite cubic-bezier(0.46, 0.03, 0.52, 0.96);
  color: #F5ADFF; }

@keyframes bounce {
  0%, 100% {
    transform: translateY(2px); }
  50% {
    transform: translateY(-8px); } }
.foot {
  position: absolute;
  right: 0;
  bottom: 0;
  color: #E3CCDC;
  padding: 1em 2em; }

.onboardwrap {
  padding: 2em; }

h1 {
  text-align: center;
  padding-bottom: 1em; }

strong {
  font-weight: bold; }

a {
  color: #64DCB7;
  transition: color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-weight: bold;
  text-decoration: none; }
  a:visited {
    color: #64DCB7; }
  a:hover {
    color: #F5ADFF; }
  a:active {
    color: #64DCB7; }

p {
  line-height: 1.75em;
  margin-bottom: 1em; }

.server {
  color: #E3CCDC; }

.center {
  text-align: center; }

.warning {
  font-weight: bold;
  color: #FF5198; }
