/* Page du menu /content ( donnant choix entre twitch et yt )  */



body {
    background: url("../img/walpappers/8.PNG") no-repeat fixed;
    background-size: cover;
    width: 100%;
    background-position: center;
  }

.all-content-cont {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .content-conteneur {
    max-width: 90%;
    background-color: rgba(40, 40, 41, 0.486);
    border-radius: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    width: 90%;
    height: 200px;
    display: flex;
    align-items: center;
    transition: 0.1s;
    /* background: url("../img/walpappers/5.PNG") no-repeat fixed; */
    color: white;
  }
  
  .content-conteneur:hover {
    scale: 100.5%;
    transition: 0.3s;
  }
  
  .image-content img {
    border-radius: 20px;
    width: 180px;
    max-width: 180px;
    height: 180px;
    max-height: 180px;
    margin-left: 10px;
    object-fit: cover;
    /* transition: 0.1s; */
  }
  
  /* .image-content img:hover {
    scale: 102%;
    transition: 0.3s;
    } */
  
  .information-conteneur {
    /* margin-left: 20px; */
    /* padding-right: 15%; */
    font-family: trois;
  }
  
  .name {
    font-family: trois;
    padding: 10px;
    font-size: 1.5rem;
    text-align: center;
  }
  

  
  
  
  
  /* RESPONSIVE  */
  @media (max-width: 900px) {
    .name {
      font-size: 1.1rem;
    }
  
    .description {
      font-size: 0.9rem;
    }
  
    .image-content img {
      border-radius: 20px;
      width: 150px;
      max-width: 150px;
      height: 150px;
      max-height: 150px;
      margin-left: 10px;
      object-fit: cover;
      /* transition: 0.1s; */
    }
  }
  