@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

body {
    font-family: Inter, sans-serif;
    background-color: rgb(242, 242, 242)!important;
    background-size: cover;
}
.lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  margin: auto;
  width: 90vw;
}
.text-custom {
  color: rgb(29, 29, 31); /* Votre noir personnalisé */
}

.line {
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  left: 50%;
  background: linear-gradient(45deg, rgba(29, 29, 31, 0.1) 0%, transparent 25%);
  overflow: hidden;
}
.line::after {
  content: "";
  display: block;
  position: absolute;
  height: 15vh;
  width: 100%;
  top: -50%;
  left: 0;
  background: linear-gradient(to bottom, rgba(29, 29, 31, 0) 0%, rgba(29, 29, 31, 0.25) 75%, rgba(29, 29, 31, 0.25)  100%);
  -webkit-animation: drop 3.5s 0s infinite;
          animation: drop 3.5s 0s infinite;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
          animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
}
.line:nth-child(1) {
  margin-left: -25%;
  background: linear-gradient(45deg, rgba(29, 29, 31, 0.1) 0%, transparent 50%);
}
.line:nth-child(1)::after {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.line:nth-child(3) {
  margin-left: 25%;
  background: linear-gradient(45deg, rgba(29, 29, 31, 0.1) 0%, transparent 50%);
}
.line:nth-child(3)::after {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

.line:nth-child(4) {
  margin-left: -50%;
  background: linear-gradient(45deg, rgba(29, 29, 31, 0.1) 0%, transparent 75%);
}
.line:nth-child(4)::after {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.line:nth-child(5) {
  margin-left: 50%;
  background: linear-gradient(45deg, rgba(29, 29, 31, 0.1) 0%, transparent 75%);
}
.line:nth-child(5)::after {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}

@-webkit-keyframes drop {
  0% {
    top: -50%;
  }
  100% {
    top: 110%;
  }
}

@keyframes drop {
  0% {
    top: -50%;
  }
  100% {
    top: 110%;
  }
}