@font-face {
  font-family: 'DaftPunk';
  src: url('/static/fonts/Daft.TTF');
}

@font-face {
  font-family: 'Rubik';
  src: url('/static/fonts/RubikBeastly-Regular.ttf');
}

body {
  background: #c0c2c9;
}

/* ***************** QUOTES **************** */
.quote-container {
  background-color: #476ce4;
  color: #fff;
  border-radius: 15px;
  margin: 40px 40px;
  padding: 25px 40px;
  max-width: 768px;
}

.progress-bar {
  background-color: #fff;
  height: 4px;
  width: 100%;
  animation: grow 10s linear infinite;
  transform-origin: left;
  margin-bottom: 20px;
}

@keyframes grow {
  0% {
    transform: scaleX(0);
  }
}

/* ***************** SoundBox **************** */
audio {
  background: linear-gradient(to top left, cyan, hotpink, gold);
  height: 25px;
}

.styleit audio::-webkit-media-controls-panel {
  background: linear-gradient(to top left, cyan, hotpink, gold);
}

.audio-container {
  align-items: center;
  width: 150px;
  padding: 5px 0;
  display: inline-block;
  background: linear-gradient(to top left, cyan, hotpink, gold);
  border-radius: 50%;
  margin: 5px;
}

.audio-image {
  display: block;
  margin: 0 auto;
  padding: 5px;
}

.btn-arcade-container {
  position: relative;
  vertical-align: top;
  width: 85px;
  text-align: center;
  display: inline-block;
  margin: 0px 20px 120px 20px;
}

.btn-arcade-containerNEW {
  vertical-align: top;
  width: 85px;
  text-align: center;
  display: inline-block;
  margin: 0px 20px 120px 20px;
}

.btn-arcade-ico {
  width: 85px;
}

/*  Base starting color - modified by loop in html */
.btn-arcade-color {
  background-color: #ff0000;
  border-radius: 50%;
  width: 78px;
  height: 76px;
  margin-top: 3px;
  margin-left: 3px;
  position: absolute;
}

.btn-arcade-bg {
  width: 85px;
  height: 80px;
  position: absolute;
  background: url('/static/button/transparent_button85x80.png') no-repeat;
}

.btn-arcade-bg:active {
  background: url('/static/button/transparent_button_pressed85x80.png')
    no-repeat;
}

.btn-arcade-shadow {
  width: 85px;
  height: 80px;
  margin-bottom: 5px;
  position: absolute;
  background: url('/static/button/transparent_button_shadow85x80.png') no-repeat;
}

.btn-arcade-label {
  color: red;
  position: absolute;
  padding-top: 100px;
  left: 50%;
  transform: translateX(-50%);
}

/* ***************** DaftBox **************** */
.btn-daft {
  font-family: 'DaftPunk';
  font-size: 24px;
}

.tile_old {
  opacity: 1;
  animation-name: fadeInOpacity;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-duration: 2s;
}

.tileX {
  width: 62px;
  height: 62px;
  background-color: #3a3a3c;
  animation-duration: 1500ms;
  animation-fill-mode: forwards;
}

.xB2A04C {
  animation-name: YlwFadeIn;
}

.x618C55 {
  animation-name: GrnFadeIn;
}

@keyframes GrnFadeIn {
  from {
    background-color: #3a3a3c;
  }
  to {
    background-color: #618c55;
  }
}

@keyframes YlwFadeIn {
  from {
    background-color: #3a3a3c;
  }
  to {
    background-color: #b2a04c;
  }
}

.letterX {
  font-size: 40px;
  font-weight: bold;
  color: #3a3a3c;
  animation-name: LetterFadeIn;
  animation-duration: 1500ms;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

@keyframes LetterFadeIn {
  0% {
    color: #3a3a3c;
  }
  100% {
    color: white;
  }
}

.miniTile:nth-child(2n + 1) {
  transform: rotate(-3deg);
}

.miniTile:nth-child(3n + 2) {
  transform: rotate(2deg);
}

.miniTile:nth-child(5n + 3) {
  transform: rotate(-5deg);
}

.miniTile:nth-child(7n + 5) {
  transform: rotate(7deg);
}

.miniTile:nth-child(11n + 7) {
  transform: rotate(4deg);
}

.barChart {
  background-color: green;
  height: 25px;
}

.hoversquare {
  background-color: #1d1d1d;
  box-shadow: 0 0 2px #000000;
  height: 16px;
  width: 16px;
  margin: 1px;
  transition: 3s ease;
}

.hoversquare:hover {
  transition-duration: 0s;
}
