* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  display: grid;
  place-items: center;
  background-color: #b5eba2;
}

.container {
  background: #fff;
  width: 50%;
  min-width: 500px;
  padding: 32px 0;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
}

.timer-display {
  position: relative;
  width: 90%;
  left: 4%;
  padding: 32px 16px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-radius: 5px;
  box-shadow: 0 0 20px rgba(65, 5, 145, 0.25);
  font-family: "Roboto mono", monospace;
  color: #8c52ff;
  font-weight: bolder;
  font-size: 24px;
}

.buttons {
  width: 90%;
  margin: 60px auto 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.buttons button {
  width: 120px;
  height: 45px;
  background-color: #8c52ff;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 18px;
  border-radius: 5px;
  outline: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.buttons button:hover {
  transform: scale(1.05);
  background-color: #7a46e6;
}

.buttons button:nth-child(2) {
  background-color: #e35209;
}

.buttons button:nth-child(3) {
  background-color: #f7df1e;
}

.buttons button:nth-child(2):hover {
  background-color: #cf4a08;
}

.buttons button:nth-child(3):hover {
  background-color: #e5d015;
}
