@import url('https://fonts.googleapis.com/css?family=Dosis|Open+Sans+Condensed:300&display=swap');

*, html, body {
  margin: 0 auto;
}

body {
  /* background-image: url(../img/bg.png); */
  color: white;
  font-family: 'Dosis', sans-serif;
}

#myVideo {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
}

@keyframes bouncedown {
  0% { top: 0px; }
  30% { top: 5px; }
  100% { top: 0px; }
}
.bounce-down {
  animation: bouncedown 0.65s;
}
#defaultCanvas0 {
  position: relative;
}

.flex {
  display: flex;
}

.container {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0,0,0,0.5);
}
.container.black-background {
  background-color: black !important;
}
.header-section {
  padding-top: 400px;
  opacity: 0;
  transition: opacity 1s ease, padding-top 1.5s cubic-bezier(0.85, 0, 0.15, 1);
}
.transition-position {
  padding-top: 40px;
}
.transition-opacity {
  opacity: 1;
}
.game-section {
  margin-top: 40px;
  max-width: 660px;
  display: flex;
  justify-content: flex-start;
}
.menu-section {
  width: 180px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 30px;
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
}
.menu-section > div {
  margin: 0;
}
#menu-left {
  text-align: right;
}

#menu-right {
  text-align: left;
}

#defaultCanvas0 {
  justify-content: center;
  border: 2px solid #99ccff;
  border-top: none;
}
h1.page-title {
  font-weight: light;
  letter-spacing: 4px;
  font-size: 56px;
  font-family: 'Open Sans Condensed', sans-serif;
  text-align: center;
}
p.subtitle {
  font-size: 28px;
  text-align: center;
}

.control-element > .title {
  margin-top: 10px;
}
.control-element > .content {
  font-size: 28px;
}

.visibility-hidden {
  visibility: hidden;
}
#play-button {
  opacity: 1;
  transition: opacity 0.5s ease-in;
}
#play-button > .inner {
  margin-top: 60px;
  font-size: 30px;
  background-color: honeydew;
  color: black;
  padding: 10px 50px;
  border-radius: 49px;
  font-family: monospace;
  cursor: pointer;
}
#play-button.invisible {
  opacity: 0;
}
