* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-image: linear-gradient(to bottom, #999999, #e0e0e0);
}
.box {
  min-width: 60%;
  min-height: 60%;
  background-image: linear-gradient(to bottom, #ff6b6b, #ffa502);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 5vw;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  opacity: 0.9;
}
.box h1 {
  width: fit-content;
  margin: 5% 0;
  background-image: linear-gradient(to right, aqua, chartreuse);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  border-radius: 5vw;
  font-size: 110%;
  text-align: center;
}
.timer {
  width: fit-content;
  color: white;
  margin: 5%;
  font-weight: bold;
  background-image: linear-gradient(to right, aqua, chartreuse);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border: 2px solid aqua;
  border-radius: 5vw;
}
/*# sourceMappingURL=style.css.map */