@import url(https://fonts.googleapis.com/css?family=Oswald:400,300);
@import url("https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css");
body {
  background: #1E1E24;
}

.container {
  height: 550px;
  width: 400px;
  border-radius: 50%;
}

.simon {
  height: 175px;
  width: 175px;
  cursor: pointer;
  background: none;
  padding: none;
  border: none;
  margin: none;
  box-shadow: none;
  outline: none;
  border-radius: 50%;
  font-family: "Oswald";
  font-size: 50px;
  transition: background 0.2s ease-in;
  transition: border 0.1s linear;
}

#yellow, #blue, #green, #red {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

#yellow {
  left: 20%;
}

#blue {
  left: 35%;
}

#red {
  left: 50%;
}

#green {
  left: 65%;
}

#yellow {
  border: #EFBD26 solid 15px;
  color: #EFBD26;
}

#yellow:hover {
  background: #EFBD26;
  color: #1E1E24;
}

#yellow:hover:active {
  transform: translateY(-50%) scale(1.1);
}

.clicked-yellow:before {
  display: block;
  content: "";
  opacity: 0;
  background: #EFBD26;
  height: 100%;
  width: 100%;
  position: absolute;
  border-radius: 50%;
  left: 0;
  top: 0;
  -webkit-animation: click 0.4s ease-in 1;
  animation: click 0.4s ease-in 1;
}

#red {
  border: #D63B29 solid 15px;
  color: #D63B29;
}

#red:hover {
  background: #D63B29;
  color: #1E1E24;
}

#red:hover:active {
  transform: translateY(-50%) scale(1.1);
}

.clicked-red:before {
  display: block;
  content: "";
  opacity: 0;
  background: #D63B29;
  height: 100%;
  width: 100%;
  position: absolute;
  border-radius: 50%;
  left: 0;
  top: 0;
  -webkit-animation: click 0.4s ease-in 1;
  animation: click 0.4s ease-in 1;
}

#blue {
  border: #006992 solid 15px;
  color: #006992;
}

#blue:hover {
  background: #006992;
  color: #1E1E24;
}

#blue:hover:active {
  transform: translateY(-50%) scale(1.1);
}

.clicked-blue:before {
  display: block;
  content: "";
  opacity: 0;
  background: #006992;
  height: 100%;
  width: 100%;
  position: absolute;
  border-radius: 50%;
  left: 0;
  top: 0;
  -webkit-animation: click 0.4s ease-in 1;
  animation: click 0.4s ease-in 1;
}

#green {
  border: #00CC66 solid 15px;
  color: #00CC66;
}

#green:hover {
  background: #00CC66;
  color: #1E1E24;
}

#green:hover:active {
  transform: translateY(-50%) scale(1.1);
}

.clicked-green:before {
  display: block;
  content: "";
  opacity: 0;
  background: #00CC66;
  height: 100%;
  width: 100%;
  position: absolute;
  border-radius: 50%;
  left: 0;
  top: 0;
  -webkit-animation: click 0.4s ease-in 1;
  animation: click 0.4s ease-in 1;
}

.options {
  display: block;
  position: absolute;
  left: 50%;
  top: 20%;
  transform: translate(-50%, -50%);
  display: block;
  height: 100px;
  width: 100%;
}

.start {
  position: absolute;
  background: none;
  border: none;
  outline-color: #FF8D2A;
  box-shadow: none;
  cursor: pointer;
  left: 50%;
  font-size: 30px;
  font-family: "Oswald";
  width: 150px;
  height: 100px;
  border-radius: 25%;
  border: #FF8D2A solid 10px;
  color: #FF7700;
}

.start i {
  font-size: 40px;
}

.start:active {
  color: #D63B29;
}

.start:hover {
  background: #FF8D2A;
  color: #1E1E24;
}

.strict {
  position: absolute;
  left: 30%;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  color: #09925C;
  height: 40px;
  width: 150px;
  font-size: 20px;
  font-family: "Oswald";
}

.steps {
  position: absolute;
  left: 50%;
  padding-left: 25px;
  color: #21618C;
  font-family: "Oswald";
  font-size: 25px;
}

.status {
  position: absolute;
  transform: translateX(-50%);
  font-size: 25px;
  font-family: "Oswald";
  color: #F1E4F3;
  left: 50%;
  padding-left: 25px;
  height: 40px;
}

.clicked:before {
  display: block;
  content: "";
  opacity: 0;
  background: black;
  height: 100%;
  width: 100%;
  position: absolute;
  border-radius: 50%;
  left: 0;
  top: 0;
  -webkit-animation: click 0.4s linear 1;
  animation: click 0.4s linear 1;
}

.disabled {
  pointer-events: none;
  cursor: wait;
}

@-webkit-keyframes click {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes click {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.footer {
  background-color: #222;
  border-top: 1px outset #444;
  font-size: 12px;
  font-weight: normal;
  margin-top: 3em;
  min-width: 320px;
  padding: 1em 1em 0 1em;
  width: 100%;
  position: fixed;
  bottom: 0;
}

.footer .social-icons {
  margin-top: 3px;
}

.footer .social-icons a {
  font-size: 30px;
  color: #0431B4;
  margin: 5px;
}

.footer .social-icons a i:hover {
  color: #7ba9d6;
}

.footer .social-icons .footer .container-fluid {
  max-width: 768px;
}