@font-face {
  font-family: "Avengeance Heroic Avenger";
  src: url("./../fonts/AVENGEANCE HEROIC AVENGER AT.ttf");
  font-style: normal;
  font-weight: 300;
}
@font-face {
  font-family: "Roboto";
  src: url("./../fonts/Roboto-Light-webfont.woff");
  font-style: normal;
  font-weight: 300;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-image: linear-gradient(to left top, rgb(13, 12, 12), rgb(248, 238, 238));
}

#content {
  height: 95vh;
  width: 100vw;
  background-color: transparent;
  font-family: "Avengeance Heroic Avenger";
  font-weight: 300;
  font-style: normal;
  font-size: 4em;
}
#content .left-side {
  width: 50%;
  height: 100%;
  float: left;
  font-size: 0.8em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#content .left-side h1 {
  margin-left: 20px;
  padding-bottom: 30px;
  color: rgb(204, 255, 0);
}
#content .left-side h2 {
  margin-left: 20px;
  padding-bottom: 30px;
  color: rgb(69, 69, 250);
}
#content .right-side {
  width: 50%;
  height: 100%;
  float: left;
  display: flex;
  justify-content: center;
  align-items: center;
}
#content .right-side .center {
  width: 100%;
  height: 70vh;
}
#content .right-side .center .count-container {
  width: 100%;
  height: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#content .right-side .center .count-container .count {
  width: 300px;
  height: 300px;
  background-color: rgb(255, 116, 17);
  border-radius: 50%;
  font-family: "Avengeance Heroic Avenger";
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(69, 69, 250);
}
#content .right-side .center .btn-container {
  width: 100%;
  height: 20%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
#content .right-side .center .btn-container .btn {
  width: 5em;
  height: 2.5em;
  border-radius: 25px;
  background-color: rgb(69, 69, 250);
  color: rgb(204, 255, 0);
  font-size: 0.5em;
  font-family: "Avengeance Heroic Avenger";
  box-shadow: 10px 5px 5px rgb(255, 116, 17);
}
#content .right-side .center .btn-container .btn:hover {
  box-shadow: 10px 5px 5px rgb(248, 238, 238);
}
#content .right-side .center .btn-container .btn.reset {
  width: 3.5em;
  height: 3.5em;
  border-radius: 50px;
  box-shadow: 10px 5px 5px rgb(215, 29, 29);
}
#content .right-side .center .btn-container .btn.reset:hover {
  box-shadow: 10px 5px 5px rgb(248, 238, 238);
}

.footer {
  width: 100%;
  height: 5vh;
  background-color: transparent;
  border-top: 0.5px solid rgb(47, 46, 46);
  font-family: "Roboto";
  font-size: 0.8em;
  font-weight: normal;
  color: rgb(248, 238, 238);
  display: flex;
  justify-content: space-around;
  align-items: center;
}

/*-----------------------*/
/* *** Media Queries *** */
/*-----------------------*/
@media only screen and (max-width: 1000px) {
  #content {
    font-size: 2.3em;
  }
  #content .left-side {
    width: 100%;
    height: 50%;
    float: none;
    justify-content: flex-end;
  }
  #content .right-side {
    width: 100%;
    height: 50%;
    align-items: flex-start;
    float: none;
  }
  #content .right-side .center {
    height: 70%;
  }
  #content .right-side .center .count-container {
    height: 70%;
  }
  #content .right-side .center .count-container .count {
    width: 100px;
    height: 100px;
  }
  #content .right-side .center .btn-container {
    height: 30%;
    justify-content: center;
  }
  #content .right-side .center .btn-container .btn {
    margin-left: 12px;
  }
  .footer {
    visibility: hidden;
  }
}

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