body {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0 150px;
  background-image: url("./images/Image-Acceuil.JPG");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* height: 100vh; */
  font-family: sans-serif;
  color: white;
}

body::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 0;
}

body > * {
  position: relative;
  z-index: 1;
  color: white;
}

.logo {
  width: 200px;
  height: 200px;
}

.title {
  margin-bottom: 30px;
}

.title h1 {
  font-size: 80px;
  text-align: center;
  margin: 0;
}

/*Pour les téléphones portables*/
@media (max-width: 620px) {
  .title h1 {
    font-size: 40px;
  }

  body {
    padding: 0 20px;
  }

  .countdown-container {
    flex-direction: column;
  }

  .countdown {
    margin-left: 0;
    margin-bottom: 20px;
    font-size: 1em;
  }
}

@media (min-height: 620px) and (min-width: 620px) {
  body {
    height: 100vh;
  }
}

.content {
  text-align: center;
  margin-bottom: 30px;
}

.content p {
  font-size: 30px;
  margin-bottom: 40px;
}

.content a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  background-color: #5271ff;
  border-radius: 5px;
  padding: 10px 40px;
}

.countdown-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.countdown {
  margin-left: 5px;
  font-size: 2em;
  color: #007bff;
}
