/*
 * Created Date: Friday, 5th February 2021, 2:50:43 am
 * Author: Kingsley Chimezie
 */
::-moz-selection {
  background: red;
}
::selection {
  background: red;
}

::-moz-selection {
  background: red;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-thumb {
  background: -webkit-gradient(linear, left top, left bottom, from(#e73c7e), to(#23a6d5));
  background: linear-gradient(#e73c7e, #23a6d5);
}

body {
  background-color: #ddd;
  text-align: center;
  margin: 0;
  padding: 25px;
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  background-size: 400% 400%;
  -webkit-animation: gradient 15s ease infinite;
          animation: gradient 15s ease infinite;
}

@-webkit-keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

body #mainContainer {
  padding: 10px;
}

body #mainContainer #loaderHeart {
  margin-top: 100px;
}

body #mainContainer #header {
  margin-top: 25px;
  margin-bottom: 25px;
}

body #mainContainer #bee {
  margin-top: 80px;
  margin-bottom: 20px;
}

body #mainContainer #btnsGroup #btnChangeAnswer {
  margin-top: -25px;
}

body #mainContainer #credit {
  margin-top: 75px;
}

body #mainContainer #credit a {
  text-decoration: none;
  color: #0e4b4b;
}

body #mainContainer #credit #heart {
  display: inline-block;
}

/* RESPONSIVE
  ------------------------------------------------------ */
@media only screen and (min-width: 1920px) {
  #mainContainer #resultGroup #result #resultImg {
    width: 18%;
  }
}

@media only screen and (max-width: 1920px) {
  #mainContainer #resultGroup #result #resultImg {
    width: 400px;
  }
}

@media only screen and (max-width: 468px) {
  #mainContainer #resultGroup #result #resultHeader {
    margin-top: none;
  }
  #mainContainer #resultGroup #result #resultImg {
    width: 100%;
  }
}
/*# sourceMappingURL=main.css.map */