/*
TODO: this should only have global variables... make input stuff to its ows scss...
*/
.flex-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  padding: 15px;
  margin: 80px 0;
}
.flex-container div {
  width: 50%;
}
.flex-container h1 {
  width: 100%;
  font-size: 33px;
}
.flex-container p {
  font-size: 22px;
}

#div-giraffe {
  background-color: #B5C0D0;
  box-shadow: 0 0 6px 20px #B5C0D0;
}

#div-rabbit {
  flex-direction: row-reverse;
  background-color: #CCD3CA;
  box-shadow: 0 0 6px 20px #CCD3CA;
}

#div-fox {
  background-color: #EED3D9;
  box-shadow: 0 0 6px 20px #EED3D9;
}

#div-last {
  background-color: #EED3D9;
  font-weight: 400;
  font-style: italic;
}

.indeximage {
  width: 70%;
  border-radius: 30%;
}

@media only screen and (min-width: 320px) {
  .flex-container p {
    font-size: 15px;
  }
  .flex-container h1 {
    font-size: 20px;
  }
  .indeximage {
    width: 90%;
  }
}
@media only screen and (min-width: 480px) {
  .flex-container p {
    font-size: 20px;
  }
  .flex-container h1 {
    font-size: 26px;
  }
  .indeximage {
    width: 80%;
  }
}
@media only screen and (min-width: 801px) {
  .flex-container p {
    font-size: 22px;
  }
  .flex-container h1 {
    font-size: 32px;
  }
}
@media only screen and (min-width: 1025px) {
  .flex-container p {
    font-size: 22px;
  }
  .flex-container h1 {
    font-size: 32px;
  }
}/*# sourceMappingURL=index.css.map */