.blocSerie{
    transition: 0.2s;
    position: relative;
    border: solid;
    display: flex;
    align-items: center;
    min-height: 100px;
    height: auto;
    border-width: 1px;
    padding: 10px;
    margin: 20px;
    border-color: rgb(130, 130, 130);
    border-radius: 20px;
}
.blocSerie:hover{
    transition: 0.2s;
    cursor: pointer;
    border-radius: 5px;
    background-color: rgb(237, 255, 235);
}
.imageBlocSerie{
    transition: 0.2s;
    width: 100px;
    height: 100px;
}
.imageBlocSerie:hover {
    transition: 0.2s;
    transform: scale(1.1);
}
.titreBlocSerie{
    transition: 0.2s;
    /* margin-left: 150px;
    margin-right: 100px; */
    /* transform: translateX(-50%); */
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    /* background-color: red; */
    width: 100%;
    margin-right: 200px;
}
.blocSerie:hover .titreBlocSerie {
    transition: 0.2s;
    font-size: 23px;
    color:brown;
}
.metaBlocSerie{
    position: absolute;
    right:20px;
    top:0px;
}
.chapitreBlocSerie{
    position: absolute;
    right: 20px;
    bottom: 0px;
    font-weight: bold;
    font-size: 20px;
    color: brown;
}


@media(max-width:550px){
    .metaBlocSerie {
        display: none;
    }
    .titreBlocSerie {
        font-size: 17px;
        margin-right: 10px;
        margin-top: -25px;
    }
}
@media(max-width:430px) {
    .imageBlocSerie {
        width: 50px;
        height: 50px;
    }
    .titreBlocSerie {
        margin-left: 10px;
        /* background-color: red; */
    }
}