:root{
  font-size: 16px;
}


body {
  margin: 0;
  padding: 0;
  background-color: rgb(16, 0, 67);
  color: white;
  overflow-x: hidden;
}

main {
  margin-left: 5rem;
  padding: 1rem;
  display: flex;
}

.navbar {
  width: 5rem;
  height: 100vh;
  position: fixed;
  background-color: rgb(15, 15, 15);
  transition: width 0.2s ease;
}

.navbar:hover {
  width: 12rem;
}

.navbar:hover .text {
  display: block;
}

.list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.link{
  display: flex;
  align-items: center;
  height: 5rem;
  color: aqua;
  text-decoration: none;
  filter: grayscale(100%) opacity(0.7) hue-rotate(90deg);
  transition: 0.2s;
}
.link:hover{
  filter: grayscale(0) opacity(1);
  background: black;
  color: white;
}

.text{
  display: none;
  margin: 0 1.5rem;

}

.link svg {
  min-width: 2rem;
  margin: 0 1.5rem;
}

.div{
  display: flex;
  border-radius: 25px;
  padding: 25px;
  position: relative;
  background-color: black;
  margin-right: 15px;
}

.cherche{
  display: flex;
  position: relative;
  width: 75rem;
  text-align: center;
  justify-content: center;
}

.bg{
  background-image: url(images/cherche.jpg);
  height: 100vh;
  background-size: 100% auto; /* Cover the entire width and maintain aspect ratio */
  background-position: center; /* Center the background image */
  background-repeat: no-repeat; /* Do not repeat the background image */
}

.wp{
background-image: url(images/wp.jpg);
height: 100vh;
background-size: 100% auto; /* Cover the entire width and maintain aspect ratio */
background-position: center; /* Center the background image */
background-repeat: no-repeat; /* Do not repeat the background image */
}

.img{
  margin-left:auto ;
  width: 25vh;
  height: auto;
}

body::-webkit-scrollbar{
  width: 0.25rem;
}

body::-webkit-scrollbar-track{
 background: black;
}

body::-webkit-scrollbar-thumb{
  background: red;

}

a {
  color: red;
}

.button {
  background-color: red; /* Green */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 10px;
}

.champ{
  background-color: white; /* Green */
  border: none;
  color: black;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 10px;
}


.vid {
  width: 100%;
  height: 100%;
  margin-left: 5rem;
  display: flex;
  overflow: hidden;
}

.footer {
  margin-top: auto;
    justify-content: center; /* Horizontally center content */
    align-items: center;
    background-image: url('images/fire.png'); /* Path to your image */
    background-size: 100% 130%; /* Cover the entire width and maintain aspect ratio */
    background-position: center; /* Center the background image */
    background-repeat: no-repeat; /* Do not repeat the background image */
    height: 160px; /* Adjust the height as needed */
    text-align: center; /* Center align text content */
    color: white; /* Text color */
    padding-top: 50px; /* Padding to adjust text position */
  }

.footertxt {
justify-content: center; /* Horizontally center content */
margin-top: auto;
}


.img {
  width: 80%;
  height: 100%;
  margin-left: 5rem;
  display: flex;
  overflow: hidden;
  justify-content: center;

}

.logos{
  margin-left: 5rem;
  padding: 1rem;
  display: flex;

}

.logos img{
  flex: 1; /* Each image takes up equal space */
  max-width: 33.333%; /* Each image takes up 1/3 of the viewport */
  object-fit: cover; /* Maintain aspect ratio */
}

.texts{
  display: flex; /* Use Flexbox to center content */
  justify-content: center; /* Horizontally center content */
  align-items: center;
  text-align: center;

}




.arrow-container {
  width: 100px;
  height: 100px;
  justify-content: center;
}

.arrow {
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 40px solid red;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  animation: arrowAnimation 1s infinite;
}

@keyframes arrowAnimation {
  0% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
  100% {
    transform: translateX(-50%) translateY(0);
  }
}


/* VERSION mobile*/
@media screen and (max-width: 480px) {
.navbar{
  top: 0;
  width:100vw;
  height: 5rem;
  position: fixed;
}
.navbar:hover{
  width: 100vw;
}
.navbar:hover .text {
  display: none;
}
.list{
  display: flex;
  flex-direction: row;
  width: 100vw;
}
.link{
  justify-content: center;
}
.text{
  display: none;
}
main{
  margin: 0;
}
body{
  margin-top: 5rem;
}

}



