@import "https://use.typekit.net/ifq7fkp.css";
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Vox", monospace;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: linear-gradient(45deg, rgb(245, 148, 30), rgb(230, 31, 31), rgb(21, 68, 209), rgb(43, 215, 43));
  -webkit-animation: gradient 10s ease infinite;
          animation: gradient 10s ease infinite;
  background-size: 400%;
}
@-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%;
  }
}

.controls {
  margin: 25px 0;
}
.controls__restart {
  background-color: #fcfcfd;
  border-radius: 4px;
  border: 0;
  box-shadow: rgba(45, 35, 66, 0.4) 0 2px 4px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #d6d6e7 0 -3px 0 inset;
  color: #36395a;
  font-family: "Vox", monospace;
  padding: 16px 16px;
  transition: box-shadow 0.15s, transform 0.15s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-size: 18px;
  cursor: pointer;
}
.controls__restart:focus {
  box-shadow: #d6d6e7 0 0 0 1.5px inset, rgba(45, 35, 66, 0.4) 0 2px 4px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #d6d6e7 0 -3px 0 inset;
}
.controls__restart:hover {
  box-shadow: rgba(45, 35, 66, 0.4) 0 4px 8px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #d6d6e7 0 -3px 0 inset;
  transform: translateY(-2px);
}
.controls__restart:active {
  box-shadow: #d6d6e7 0 3px 7px inset;
  transform: translateY(2px);
}

.game {
  position: relative;
  display: inline-block;
}
.game__stats {
  position: absolute;
  display: flex;
  width: 100%;
  align-items: center;
  padding: 25px;
}
.game__health-bar {
  position: relative;
  width: 100%;
  height: 30px;
}
.game__health-bar .game__bar {
  height: 30px;
  width: 100%;
}
.game__health-bar .game__bar--health {
  background: linear-gradient(to left, red, orange, yellow);
  height: 30px;
  width: 100%;
  border-radius: 0px 15px 15px 0px;
}
.game__health-bar .game__bar--damage {
  border-radius: 0px 15px 15px 0px;
  background: linear-gradient(45deg, rgb(0, 200, 255), rgb(0, 162, 255), rgb(30, 0, 255), rgb(102, 46, 221));
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
}
.game__health-bar--player-one {
  display: flex;
  justify-content: flex-end;
}
.game__health-bar--player-one .game__bar--health {
  background: linear-gradient(to right, red, orange, yellow);
  border-radius: 15px 0px 0px 15px;
}
.game__health-bar--player-one .game__bar--damage {
  border-radius: 15px 0px 0px 15px;
  background: linear-gradient(45deg, rgb(102, 46, 221), rgb(30, 0, 255), rgb(0, 162, 255), rgb(0, 200, 255));
}
.game__timer {
  color: white;
  font-size: 3rem;
  text-shadow: 1px 1px black;
  border: 4px solid lime;
  height: 100px;
  width: 100px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 25px;
  background: linear-gradient(45deg, rgb(25, 156, 117), rgb(4, 165, 4), rgb(32, 223, 32), rgb(0, 255, 187));
}
.game__result {
  position: absolute;
  color: white;
  text-shadow: 1px 1px black;
  font-size: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}/*# sourceMappingURL=style.css.map */