
header{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #042940;
    font-family: Arial, Helvetica, sans-serif;
    color:white;
    padding: 5px;
}
.navbar{
    display: flex;
    flex-direction: row;
}
  .button-49,
.button-49:after {
  width: 75px;
  height: 38px;
  line-height: 39px;
  font-size: 17px;
  font-family: 'Bebas Neue', sans-serif;
  background: linear-gradient(45deg, transparent 5%, #FF013C 5%);
  border: 0;
  color: #fff;
  letter-spacing: 3px;
  box-shadow: 6px 0px 0px #00E6F6;
  outline: transparent;
  position: relative;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  margin:  12px;
}

.button-49:after {
  --slice-0: inset(50% 50% 50% 50%);
  --slice-1: inset(80% -6px 0 0);
  --slice-2: inset(50% -6px 30% 0);
  --slice-3: inset(10% -6px 85% 0);
  --slice-4: inset(40% -6px 43% 0);
  --slice-5: inset(80% -6px 5% 0);
  
  content: 'Plus';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 3%, #00E6F6 3%, #00E6F6 5%, #FF013C 5%);
  text-shadow: -3px -3px 0px #F8F005, 3px 3px 0px #00E6F6;
  clip-path: var(--slice-0);
}

.button-49:hover:after {
  animation: 1s glitch;
  animation-timing-function: steps(2, end);
}

@keyframes glitch {
  0% {
    clip-path: var(--slice-1);
    transform: translate(-20px, -10px);
  }
  10% {
    clip-path: var(--slice-3);
    transform: translate(10px, 10px);
  }
  20% {
    clip-path: var(--slice-1);
    transform: translate(-10px, 10px);
  }
  30% {
    clip-path: var(--slice-3);
    transform: translate(0px, 5px);
  }
  40% {
    clip-path: var(--slice-2);
    transform: translate(-5px, 0px);
  }
  50% {
    clip-path: var(--slice-3);
    transform: translate(5px, 0px);
  }
  60% {
    clip-path: var(--slice-4);
    transform: translate(5px, 10px);
  }
  70% {
    clip-path: var(--slice-2);
    transform: translate(-10px, 10px);
  }
  80% {
    clip-path: var(--slice-5);
    transform: translate(20px, -10px);
  }
  90% {
    clip-path: var(--slice-1);
    transform: translate(-10px, 0px);
  }
  100% {
    clip-path: var(--slice-1);
    transform: translate(0);
  }
}

@media (min-width: 768px) {
  .button-49,
  .button-49:after {
    width: 140px;
    height: 60px;
    line-height: 20px;
  }
}
.content{
    display:flex;
    flex-direction: column;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #005C53;
}
.input {
  border-radius: 10px;
  outline: 2px solid #0db466;
  border: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background-color: #e2e2e2;
  outline-offset: 3px;
  padding: 10px 1rem;
  transition: 0.25s;
  margin-bottom: 40px;
}

.input:focus {
  outline-offset: 5px;
  background-color: #fff
}
.sources{
  display: flex;
  width: 100%;
  flex-direction: column;
  background-color: #005C53;
}
.conteneurs-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 110px;
  margin-bottom: 10px;
  background-color: #005C53;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.ligne2 {
  animation-duration: 20s; /* vitesse différente pour plus de variété */
}

.conteneurs:hover {
  animation-play-state: paused;
}

.conteneur {
  display: flex;
  align-items: center;
  background: white;
  padding: 10px;
  border: 1px solid #ccc;
  flex-shrink: 0;
  min-width: 200px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  flex-direction: column;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  background-color: #4e4e43;
  border-radius: 8px;
}

.conteneur-image {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  object-fit: cover;
  border-radius: 5px;
}
@keyframes defilement {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes defilementInverse {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.conteneurs {
  display: flex;
  gap: 20px;
  animation: defilement 40s linear infinite;
}

.ligne2 {
  animation: defilementInverse 40s linear infinite;
}
html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box; /* optionnel mais pratique */
  background: white; /* ou la couleur de fond que tu veux */
  height: 100%;
  width: 100%;
}
a {
  color: white;
  text-decoration: none;
}
.search,
.search{
  background-color: #e2e2e2 ;
  border: #e2e2e2;
  height:23px;
  outline: none;
}
.search-button{
  background-color: #e2e2e2 ;
  border: #e2e2e2;
  height:23px;
  border-radius: 5px;
}
#informations{
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(#005C53, #00bdaa ) ;
}
img{
  border-radius: 10px;
  margin-bottom: 15px;
}
p{
  font-size: 25px;
}
#foot{
  background-color: #4e4e43;
  margin-top: -30px;
  color: rgb(0, 0, 0);
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 1px;
}
.contact{
  height: 90%;
  background-color: #00bdaa;
}
