@font-face {
  font-family: onePiece;
  src: url("./font/one_piece_font.ttf");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: onePiece;
}
body {
  width: 100%;
  height: fit-content;
  min-height: 100vh;
}
.background {
  background-image: url("./img/fondOnePiece.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: fit-content;
  min-height: 100vh;
}
.filtre {
  background: radial-gradient(transparent, black);
  width: 100%;
  height: fit-content;
  min-height: 100vh;
}
h1 {
  font-size: 4rem;
  text-align: center;
  color: white;
  text-transform: uppercase;
  padding-top: 50px;
}
#plateau {
  width: 500px;
  height: 500px;
  /* background-color: #f0f; */
  margin: auto;
  margin-top: 100px;
}
.ligne {
  position: relative;
  width: 100%;
  height: 20%;
  display: flex;
}
.case_container {
  width: 20%;
  height: 100%;
}
.case {
  width: 90%;
  height: 90%;
  margin: auto;
  display: flex;
}
.chemin {
  /* border: 1px solid #f0f; */
  box-shadow: 0 2px 3px 2px rgba(40, 40, 40, 0.3);
  border-radius: 5px;
  background-color: rgba(250, 250, 250, 0.8);
}

.liste_persos {
  display: flex;
  justify-content: space-around;
  width: 300px;
}
.perso {
  border-radius: 50%;
  height: 80px;
  width: 80px;
  overflow: hidden;
  transform: translateY(-12px);
}

.actif {
  background-color: blueviolet;
}
.perso > img {
  width: 100%;
  position: relative;
}

#de {
  border: 3px solid rgb(40, 40, 40);
  border-radius: 10px;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  background-color: aliceblue;
}

.aligne {
  margin-top: 50px;
  display: flex;
  justify-content: space-around;
}

/*-------ID CASES ----------*/

#depart {
  position: absolute;
  top: 0;
  left: -90px;
  width: 90px;
}
#case0 {
  background-color: yellow;
}
#case6 {
  background-image: url(img/aokiji.jpg);
  background-size: contain;
}
