*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    box-sizing: border-box;
}

body {
  min-height: 100vh;
  background-color: rgb(78, 78, 78);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.scroller::-webkit-scrollbar{
  width: 15px;

}

.scroller::-webkit-scrollbar-track{
  background:#39383b;
  border-style: solid;
  border-radius: 5px;
  border-width: 0px;
}

.scroller::-webkit-scrollbar-thumb{
  background:#343435;
  border-style: solid;
  border-radius: 5px;
  border-width: 1px;
  border-color: #fdb837;
}

/*ccs test*/

.imgtest{
    width: 100px;
    height: 100px;
}


#wikiaRL{
    text-decoration: underline rgb(253, 183, 53);
}


@font-face {
    font-family: "Bourgeois", sans-serif;
    src: url("fonts/Bourgeois-Ultra.woff") format("woff");
   }
@font-face {
    font-family: "BougeoisBold", sans-serif;
    src: url("fonts/Bourgeois-Bold.woff") format("woff");
}

main{
    padding-top: 150px;
}

#fondnoir{
    display: none;
}

#fond{
    position: fixed;
    width: 100%;
    min-height: 1200px;
    opacity: 70%;
    z-index: -1;
    object-fit: cover;
}

@media screen and (max-width: 320px) {
    #fond{
        display: none;
    }

    #fondnoir{
        display: block ;
        position: fixed;
        width: 100%;
        min-height: 1000px;
        opacity: 70%;
        z-index: -1;
        object-fit: cover;
        background-color: black;

    }
}

.nav{
    display: flex;
}

.section{
    color: white;
    text-decoration: none;
    list-style: none;
    font-family: "BougeoisBold", sans-serif;
    font-style: italic;
    font-size: xx-large;
}

ul {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
}
li {
    list-style-type: none;
    padding: 10px;
}
a {
    text-decoration: none;
    color: white;
}

input[type="checkbox"] {
  display: none;
}

#logo{
    width: 200px;
    margin-left: 20px;
    padding: 10px;
}


@media screen and (max-width: 780px) {
  ul {
    flex-direction: column;
  }
  
  /* Gestion de l'affichage du menu */
  input[type="checkbox"]:not(:checked) ~ ul {
    display: none;
  }
  input[type="checkbox"]:checked ~ ul {
    display: flex;
  }
  
  /* Gestion de la checkbox */
  input[type="checkbox"] + label:before {
    font-family: FontAwesome;
    font-size: 30px;
    font-style: normal;
    color: white;
  }

  input[type="checkbox"] + label:before {
    content: "\f0c9";
  }

  input[type="checkbox"]:not(:checked) + label:before {
    content: "\f0c9";
  }

  input[type="checkbox"]:checked + label:before {
    content: "\f00d";
  }

  #logo{
      width: 20%;
      min-width: 150px;
  }

}


 .nav{
   position: fixed;
   display: flex;
   flex-direction: row;
   align-items: center;
   width: 100%;
   background-color: rgba(39, 39, 39, 0.9);
   border-style: solid;
   border-width: 5px;
   border-image-source: linear-gradient(0deg, rgb(253, 183, 53), rgb(255, 212, 219), rgb(75, 75, 255));
   border-image-slice: 1;
   font-family: "BougeoisBold", sans-serif;
   font-style: italic;
   justify-content: space-around;
   box-sizing: border-box;
   padding: 10px;
   z-index: 10000;
} 


/*Items*/


.space1{ 
  display: flex;
  margin: auto;
  flex-direction: column;
  width: 80%;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 2vh;
}

.title1{
  width: 300px;
  text-align: center;
  justify-content: center;
  background: linear-gradient(160deg,rgba(149, 149, 255, 0.5), rgba(255, 212, 219, 0.5)30%, rgb(255, 212, 219)70%, rgba(253, 183, 53, 0.5));
  margin: 1vh;
  font-family: "BougeoisBold", sans-serif;
  font-size: medium;
  border-style: solid;
  border-width: 1px;
  border-radius: 5px;
  padding: 5px;
}



@media screen and (max-width: 1150px){

    
  .title1{
      width: auto;
      text-align: center;
      justify-content: center;
      background: linear-gradient(160deg,rgba(149, 149, 255, 0.5), rgba(255, 212, 219, 0.5)30%, rgb(255, 212, 219)70%, rgba(253, 183, 53, 0.5));
      margin: 1vh;
      font-family: "Bourgeois", sans-serif;
      border-style: solid;
      border-width: 1px;
      padding: 5px;
  }
}

.Container{
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.containeritems{
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  margin-top: 20px;
  margin-right: 50px;
}

.icon{
  display: flex;
  width: 200px;
  height: 100px;
  margin-bottom: 30px;
  background-color: rgba(78, 78, 78, 0.9);
  border-style: solid;
  border-width: 3px;
  border-radius: 30px;
  border-color: rgb(78, 78, 78);
  border-image-slice: 1;
  align-items: center;
  justify-content:space-around;
}

.imgIcon {
  height: 60px;
  top:5px;
}

.items{
  display: flex;
  flex-direction: column;
  width: 1000px;
  background-color: rgb(78, 78, 78);
  padding: 20px;
  border-style: solid;
  border-width: 3px;
  border-radius: 10px;
  border-color: rgb(253, 183, 53);
}

.i1{
  border-color: rgb(253, 183, 53) ;
}


#containerBoost{
  display: none;
}

#containerStickers{
  display: none;
}

#containerCar{
  display: none;
}

#containerBut{
  display: none;
}

.scroller {
  width: 950px;
  height: 700px;
  overflow-y: scroll;
 
}

.rarity{
  display: flex;
  flex-direction: column;
}

.rarityList{
  font-family: "Bourgeois", sans-serif;
  color: white;
  padding: 2px;
}

.itemsList{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.wikia{
  padding: 5px;
}


footer{
  margin-top: 150px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-color: #343435;
  padding: 5px;
  border-top: white;
  border-style: solid;
}

#condition{
  color: white;
}

.iconelogo{
  margin-right: 15px;
}

@media screen and (max-width: 600px){
  footer{
    flex-direction: column-reverse;
    height: 150px;
  }
}


@media screen and (max-width: 860px){
  .Container{
    display: flex;
    flex-direction: column;
  }

  .containeritems{
    display: flex;
    width: auto;
    flex-direction: row;
    justify-content: space-around;
    margin-right: 0px;
    flex-wrap: wrap;
  }

  .icon{
    margin: 5px;
    flex-direction: column;
    position: relative;
    max-width: 50px;
    min-width: 77px;
    flex-wrap: wrap;
  }

  .imgIcon {
    height: 45px;
    position: absolute;
    top:5px;
  }

 .icon a{
    transform: rotate(90deg);
    position: absolute;
    top: 40px;
  }

  /* #force1{
    margin-top: 20px;
  } */

  .scroller {
    width: 550px;
    height: 700px;
    overflow-y: scroll;
  }

  .items{
    width: auto;
  }
}


