/* MAIN STYLES --- APP SPECIFIC */

/* Base reset (formerly provided by the rodeo CSS framework). */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: 'captain';
  src: url('/fonts/american_captain-webfont.woff2') format('woff2'),
       url('/fonts/american_captain-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'lobster';
  src: url('/fonts/lobster_1.4-webfont.woff2') format('woff2'),
       url('/fonts/lobster_1.4-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

/* PRESENTATION ELEMENTS */
.rodeo-parent {
  position: relative;
  overflow: hidden;
}

#bg-container {
  width: 100vw;
  height: 100vh;
  background: url('/img/texture_bg.png') no-repeat;
  background-size: cover;
}

#main-stage {
  position: absolute;
  left: 50%;
  margin-left: -480px;
  top: 50%;
  margin-top: -270px;
  background-color: #a8dde2;
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.075);
}
