* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

html, body {
  height: 100%;
  width: 100%;
}

body {
  overflow: hidden;
}
body main {
  height: 100%;
  width: 100%;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
body main .card {
  width: 450px;
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
}
body main .card p {
  text-align: center;
  margin-bottom: 40px;
  font-size: 20px;
  font-weight: 500;
}
body main .card p span {
  font-weight: 600;
  color: royalblue;
}
body main .card .outer {
  height: 20px;
  border-radius: 50px;
  width: 100%;
  background-color: rgb(184, 184, 184);
}
body main .card .outer .inner {
  height: 100%;
  width: 0%;
  border-radius: 50px;
  background-color: green;
}
body main .card .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
body main .card .bottom h2 {
  font-size: 60px;
  font-family: monospace;
}
body main .card .bottom button {
  padding: 12px 25px;
  background-color: green;
  color: #fff;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 600;
  border: 0;
  cursor: pointer;
}
body main .card .bottom button:active {
  scale: 0.95;
}/*# sourceMappingURL=style.css.map */