.container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  background-color: #4CAF50;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-align: center;
  transition: all 0.4s;
}

.button:hover {
  background-color: #45a049;
  transform: translateY(25px) scale(2.3);
}

.button:active {
  background-color: #3e8e41;
}

#timer {
  font-family: Arial, sans-serif;
  font-size: 24px;
  line-height: 1.5;
  color: #333;
  text-align: justify;
}

#timer::selection {
  background-color: #007bff;
  color: #fff;
}

#timer a {
  color: #007bff;
  text-decoration: none;
}

#timer a:hover {
  text-decoration: underline;
}