@import url(https://fonts.googleapis.com/css?family=Frijole);
@import url(https://fonts.googleapis.com/css?family=Alegreya+Sans);
* {
  box-sizing: border-box; }

html, body {
  height: 100vh;
  margin: 0; }

body {
  overflow: hidden; }

h1, h2 {
  color: #462f12;
  text-shadow: 0 0 20px #fec68c; }

h1 {
  font: 10vw/1 "Frijole", cursive;
  margin: 20px auto; }
  @media (min-width: 480px) {
    h1 {
      font-size: 8vw; } }
  @media (min-width: 768px) {
    h1 {
      font-size: 7vw; } }
  @media (min-width: 1024px) {
    h1 {
      font-size: 6vw; } }

h2 {
  font: 8vw/1 "Frijole", cursive;
  margin: 10px auto; }
  @media (min-width: 480px) {
    h2 {
      font-size: 6vw; } }
  @media (min-width: 768px) {
    h2 {
      font-size: 4vw; } }
  @media (min-width: 1024px) {
    h2 {
      font-size: 2vw; } }

p {
  color: #462f12;
  font: 1.1em/1.5 "Alegreya Sans", sans-serif;
  margin: 0; }

label {
  font: 1.1em/1.5 "Alegreya Sans", sans-serif; }

button {
  width: 100px;
  min-height: 48px;
  margin: 10px;
  font: bold 1.2em/1 'Alegreya Sans', sans-serif;
  background-color: #8ead39;
  border-radius: 5px;
  border: 3px solid #3f6314;
  color: #3f6314;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s ease; }
  button:hover {
    background-color: #4f801d;
    color: #bbd379;
    transform: scale(1.05, 1.05); }
  button:disabled {
    color: #699f31;
    border-color: #699f31;
    background-color: #a2bb5e;
    box-shadow: none;
    cursor: not-allowed; }

main {
  width: 100%;
  height: calc(100% - 25px);
  padding: 0;
  background-image: url(../files/bg.jpg);
  background-position: center;
  background-size: cover;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start; }

footer {
  width: 100%;
  height: 25px;
  background-color: #3f6314;
  padding: 1px 10px;
  display: flex;
  justify-content: flex-end;
  align-items: center; }
  footer p {
    color: #8ead39;
    font-size: 12px; }
    footer p a {
      color: #8ead39;
      text-decoration: none; }
      footer p a:hover {
        color: #a7c653; }

.container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center; }

.row, .progress-bar, section {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center; }

.info {
  text-align: center;
  max-width: 600px;
  padding: 0 10px;
  margin-bottom: 20px; }

.progress-bar {
  min-height: calc(18px + 22px); }

.progress {
  width: 18px;
  height: 18px;
  border: 4px solid #fec68c;
  margin: 10px 5px;
  border-radius: 50%;
  transform: scale(0, 0);
  transition: all .3s ease; }

.inserted {
  transform: scale(1, 1); }

.correct {
  background-color: #8ead39;
  border: 4px solid #3f6314;
  animation: pop .3s ease; }

.msg {
  width: 90%;
  min-height: 48px;
  padding: 5px;
  color: #925f41;
  border: 2px solid #925f41;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity .3s ease; }
  .msg.on-screen {
    opacity: 1; }
  .msg.success {
    border-color: #4f801d;
    color: #4f801d; }
  .msg.error {
    border-color: #bf4040;
    color: #bf4040; }
  @media (min-width: 480px) {
    .msg {
      width: 70%; } }
  @media (min-width: 768px) {
    .msg {
      width: 50%; } }
  .msg i {
    margin: 0 8px; }
  .msg p {
    color: #925f41; }

.inputs {
  flex-grow: 2;
  display: flex;
  align-items: flex-end; }

.input {
  width: 20%;
  height: 20vw;
  max-width: 220px;
  max-height: 220px;
  cursor: pointer;
  transition: scale .3s ease;
  display: flex;
  align-items: flex-end;
  transform: translate(0, 0);
  transform-origin: 50% bottom; }
  .input img {
    width: 100%;
    height: auto; }
  @media (max-width: 480px) {
    .input {
      width: 25%;
      height: 25vw; } }

.active {
  animation: enlarge 1s forwards; }

@keyframes pop {
  0% {
    transform: scale(1, 1); }
  50% {
    transform: scale(1.1, 1.1); }
  100% {
    transform: scale(1, 1); } }
@keyframes enlarge {
  0% {
    transform: scale(1, 1); }
  9% {
    transform: scale(1.15, 1.15); }
  13% {
    transform: scale(1.1, 1.1); }
  75% {
    transform: scale(1.1, 1.1); }
  100% {
    transform: scale(1, 1); } }

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