/* html {
  height: 100%;
  overflow-y: auto;
} */

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 25px;
  box-sizing: border-box;

  font-family: "Arial", sans-serif;
  margin: 0;
  height: auto;
  overflow-y: auto;
  overflow: hidden;
  color: white;
}

.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
  transition: opacity 2s ease;
}

.countdown-container {
  display: flex;
  gap: 20px;
  background: rgba(0, 0, 0, 0.3);
  padding: 20px 40px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.time-box {
  text-align: center;
}

.number {
  font-size: 3rem;
  font-weight: bold;
}

.label {
  font-size: 1rem;
  text-transform: uppercase;
  margin-top: 5px;
  display: block;
}

.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
  transition: opacity 2s ease;
  opacity: 0; /* Initialement invisible */
}

#background1 {
  opacity: 1; /* Montrez le premier fond au départ */
}

.text-container {
  margin-top: 20px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  color: white;
  text-align: left;
  line-height: 1.5;
  font-size: small;
}
