body {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}
h1 {
  font-size: 3rem;
  color: white;
  font-family: "Work Sans", sans-serif;
}

.waiting {
  position: relative;
  height: 100%;
}

.text-overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  pointer-events: none; /* Désactive les événements de pointer */

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  color: #fff; /* Couleur du texte */
  font-size: 24px;
  text-align: center;
}

.super-loader {
  position: absolute;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 0.8);

  z-index: 1000;
}

.loader-container {
  display: flex;
  justify-content: center;
  align-items: center;

  position: relative;
  width: 400px;
  height: 200px;
  padding: 2rem;
  margin: 2rem;
}

.loader-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;

  height: 8px;
  background-color: #eb5b29;
  transition: width 0.1s ease;
}

#loaded-image {
  max-width: 350px;
  height: auto;
}

img {
  max-width: 100%;
  max-height: 100%;

  display: block;

  transition: opacity 3s ease;
}

.hidden {
  display: none;
}

#img-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
