/*-----------------------------------------------------------------------------------*/
/*	Fonts
/*-----------------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,700,900');

/*-----------------------------------------------------------------------------------*/
/*	Typography
/*-----------------------------------------------------------------------------------*/

body, input, button, select, textarea {
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
	font-size: 1em;
  	letter-spacing: 0.9px;
    background-color: #f1f1f1;
    color: #333;
}

h1 {
  font-size: 1.7em;
  font-weight: 700;
}

a {
    border-bottom: 2px solid #00aa79;
}

/*-----------------------------------------------------------------------------------*/
/*	Custom styles
/*-----------------------------------------------------------------------------------*/

.code {
    background: #fff;
    border: 2px solid #9280ca;
    text-align: center;
}

.code h1 {
    border-bottom: 2px solid #9280ca;
    font-size: 20px;
}

.code p {
    font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", "monospace";
    font-size: 20px;
}

input[type="submit"], input[type="reset"], input[type="button"], button, .button {
    background-color: #00aa79;
    color: #ffffff !important;
}

/*-----------------------------------------------------------------------------------*/
/*	Bounce-in menu indicator
/*-----------------------------------------------------------------------------------*/

.menu-bounce {
  background: #7B6FAE;
  display: inline-block;
  position: fixed;
  top: 15px;
  left: 10px;
  color: #fff;
  font-size: 14px;
  padding: 7px 9px 8px;
  text-align: left;
  border-radius: 3px;
  text-transform: uppercase;
  line-height: 100%;
  letter-spacing: 0px;
  z-index: 9999;
}


.menu-bounce span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}

.menu-bounce:after {
  bottom: 100%;
  left: 20px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-bottom-color: #7B6FAE;
  border-width: 7px;
  margin-left: -7px;
}


.animated-front {
  animation-duration: 4s;
  animation-fill-mode: both;
}

@keyframes bounceInDown {
  from, 25%, 30%, 40% {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  25% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  30% {
    transform: translate3d(0, -10px, 0);
  }
  40% {
    transform: translate3d(0, 5px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
    opacity: 1;
  }
  100% {
    transform: translate3d(0, 5px, 0);
    opacity: 0;
  }
  to {
    transform: none;
  }
}

.bounceInDown {
  animation-name: bounceInDown;
}

/*-----------------------------------------------------------------------------------*/
/*	Media queries
/*-----------------------------------------------------------------------------------*/
