body {
  font-family: "proxima-nova", sans-serif;
  color: white;
}

.cover {
  background-size: cover;
  background-position: center;
  height: 230px;
}

.active {
  background-color: #161e2e;
}

footer {
  transition: all 0.2s cubic-bezier(0.85, 0, 0.15, 1) !important;
  opacity: 1;
  text-align: center;
  color: white;
  font-size: 0.75rem;
  position: relative;
  margin-top: 2rem;
}

@media (max-width: 880px) {
  footer {
    font-size: 14px;
  }
}
footer a {
  transition: opacity 0.3s 0s cubic-bezier(0.85, 0, 0.15, 1);
  opacity: 1;
}

footer a {
  text-decoration: none;
  color: white;
  font-weight: 600;
}

footer .copyright svg {
  display: inline;
  fill: white;
  height: 45px;
  width: 138px;
  transform: translate(5px, -10px);
}

.mimo-line {
  background: linear-gradient(to right, #312782, #009ee2, #fcea0d, #e84e1b, #bd1622, #e61b72, #662482, #312a6f);
  width: 100%;
  left: 0;
  top: 0;
  height: 3px;
  border-radius: 0 40% 0 0;
  display: block;
  z-index: -1;
  animation: line 2s cubic-bezier(0.85, 0, 0.15, 1) infinite;
  animation-duration: 2s;
  animation-timing-function: cubic-bezier(0.85, 0, 0.15, 1);
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
  animation-name: line;
  margin-top: 0.75rem;
}

@keyframes line {
  0% {
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0%;
  }
}
/* ==================
*  VARIABLES
* ================== */
:root {
  --color-gray: hsl(0, 0%, 61%);
  --color-light-gray: hsl(0, 0%, 95%);
  --color-dark-gray: hsl(0, 0%, 51%);
  --color-red: hsl(348, 100%, 61%);
  --color-red-inverse: hsl(348, 100%, 65%);
  /*--color-background: #5850ec;*/
}

/* ==================
 *  BASE
 * ================== */
body {
  font-family: "proxima-nova", sans-serif;
  background: #362f78;
}

.outer-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  background-size: auto 112%;
}

.inner-container {
  max-width: 410px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: calc(100vh - 336px);
  min-height: 400px;
}

/* ==================
 *  SHAPE
 * ================== */
.shape-wrap {
  display: flex;
  justify-content: center;
  margin: 0 0 30px;
}

img.shape {
  height: 180px;
}

#shape {
  transition: all 0.2s ease-in-out;
  height: 200px;
}

#shape.huge {
  animation: grow 1s;
}

#shape.tiny {
  animation: shrink 1s;
}

#shape.spin {
  animation: spin 1s ease-in;
}

#shape.flip {
  animation: flip 1s ease-in;
}

/* ==================
*  SPEECH
* ================== */
.speech-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 5px 8px;
  min-height: 40px;
  border: 1px solid #c0c8c9;
  border-radius: 4px;
  color: #7b8993;
  background: white;
}

.speech-box p {
  margin: 0;
  font-size: 20px;
  text-align: center;
}

.speech-box p > span {
  color: var(--color-red-inverse);
}

.speech-box > span {
  color: #7b8993;
}

/* ==================
 *  BUTTON
 * ================== */
.speech-button-wrap {
  display: flex;
  justify-content: center;
}

button {
  border: 0;
  background: transparent;
}

button:focus {
  outline: 0;
}

button .fa-microphone {
  border-radius: 50%;
  padding: 10px 15px;
  font-size: 30px;
  color: white;
  background: #ff3860;
}

button.speaking .fa-microphone {
  animation: pulse 1s infinite;
}

/* ==================
 *  COMMAND
 * ================== */
.commands {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-end;
  margin: 5px 0 20px;
  font-weight: bold;
}

.commands div {
  color: #ff3860;
  font-style: italic;
}

.commands span {
  color: #ff3860;
  font-size: 14px;
}

/* ==================
 *  ANIMATION
 * ================== */
@keyframes pulse {
  0% {
    transform: scale(1);
    background: var(--color-red-inverse);
  }
  50% {
    transform: scale(1.05);
    background: var(--color-red);
  }
  100% {
    transform: scale(1);
    background: var(--color-red-inverse);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes grow {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(2.5);
  }
}
@keyframes shrink {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.1);
  }
}
@keyframes flip {
  0% {
    transform: rotateY(0);
  }
  100% {
    transform: rotateY(180deg);
  }
}

/*# sourceMappingURL=style.css.map */
