@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Bebas Neue", cursive;
  text-align: center;
}

body {
  background: rgb(240, 240, 240);
}

.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.title p {
  font-size: 80px;
  color: rgb(44, 44, 44);
  text-shadow: 0px 5px 0px rgba(0, 0, 0, 0.2);
}

button {
  border: none;
  outline: none;
  padding: 50px;
  color: white;
  border-radius: 20px;
  font-size: 50px;
  background: rgb(255, 59, 59);
  box-shadow: 0px 18px 0px 0px rgb(170, 34, 34);
  margin-bottom: 18px;
}

button:focus {
  box-shadow: none;
  transform: translateY(18px);
}

.progressOut {
  display: flex;
  align-items: center;
  justify-content: start;
  width: 90vw;
  height: 50px;
  background: rgb(37, 37, 37);
  border-radius: 20px;
  box-shadow: 0px 8px 0px 0px rgba(0, 0, 0, 0.2);
}

.progressIn {
  transition: width;
  color: #fff;
  transition: width 0.2s;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0%;
  height: 50px;
  background: rgb(34, 156, 255);
  border-radius: 20px;
}
