* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "poppins", Arial, Helvetica, sans-serif;
}

body {
  margin: 0;
  overflow: hidden;
}

.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  /* Couleur orange */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.logo {
  width: 40rem;
  /* Ajustez la taille du logo selon vos besoins */
  margin-bottom: 20px;
  /* Espacement entre le logo et le cercle de chargement */
}

.loader {
  border: 5px solid #6c5ce7;
  border-radius: 50%;
  border-top: 5px solid #f3f3f3;
  width: 25px;
  height: 25px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 4s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.content {
  display: none;
  border-radius: 15px;
}

@media screen and (max-width:768px) {
  .logo {
    width: 20rem;
  }
}