@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300&family=Roboto&display=swap");

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #100d38;
  color: white;
  display: flex;
  flex-direction: column;
  height: 80vh;
  justify-content: center;
  align-items: center;
}

.head {
  font-size: 35px;
  margin-bottom: 50px;
  font-weight: 900;
}

.timer-box {
  background-color: rgb(58, 30, 86);
  padding: 25px;
  border-radius: 8px;
}

.time {
  display: flex;
  position: relative;
}

.time div {
  margin: 10px;
}

.colon-first {
  position: absolute;
  font-size: 40px;
  top: 43%;
  left: 22%;
}

.colon-second {
  position: absolute;
  font-size: 40px;
  top: 43%;
  left: 62%;
}

.time h1 {
  margin: 10px 0 10px;
}

input {
  margin-left: 10px;
  font-size: 40px;
  background: none;
  border: none;
  color: white;
  width: 50%;
}

.btn {
  text-align: center;
}

button {
  margin: 5px 50px 10px;
  border: none;
  border-radius: 10px;
  color: white;
  padding: 15px;
  font-size: 20px;
  background-color: rgb(114, 20, 196);
  cursor: pointer;
}

button:active {
  background-color: rgb(136, 31, 177);
  transform: scale(1.05);
}
