.titre-chronique-songs{
    text-align: center;
    font-weight: 800;
    font-size: 30px;
}
.chroniqueArtiste{
    width: 90%;
    margin: 50px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.chroniqueArtiste > div{
    display: block;
    text-decoration: none;
    width: 200px;
    height: 300px;
    margin: 30px 30px;
    box-shadow: 0px 5px 5px silver;
    text-align: center;
    background-color: white;
    transition: 1s;
    cursor: pointer;
    color: #27558D;
}

.chroniqueArtiste > div > .linkAlbum{
    background-color: white;
    display: block;
    text-decoration: none;
    width: 200px;
    height: 300px;
    text-align: center;
    transition: 1s;
    cursor: pointer;
    color: #27558D;
}
.chroniqueArtiste > div:hover{
    transform: scale(1.2);
    box-shadow: 0px 5px 30px silver;
    transition: 1s;
}
.chroniqueArtiste > div > .linkAlbum > h2{
    font-size: 15px;
}
.chroniqueArtiste > div > .linkAlbum > h3{
    font-size: 21px;
    margin: 0;
    padding: 5px;
    transition: 0.5s;
}
.chroniqueArtiste > div > .linkAlbum > img{
    height: 200px;
    width: 200px;
    object-fit: cover;
}

.chronique{
    width: 90%;
    margin: 50px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.chronique > div{
    display: block;
    text-decoration: none;
    width: 200px;
    height: 300px;
    margin: 30px 30px;
    box-shadow: 0px 5px 5px silver;
    text-align: center;
    background-color: white;
    transition: 1s;
    cursor: pointer;
    color: #27558D;
}

.chronique > div > .linkAlbum{
    background-color: white;
    display: block;
    text-decoration: none;
    width: 200px;
    height: 300px;
    text-align: center;
    transition: 1s;
    cursor: pointer;
    color: #27558D;
}
.chronique > div:hover{
    transform: scale(1.2);
    box-shadow: 0px 5px 30px silver;
    transition: 1s;
}
.chronique > div > .linkAlbum > h2{
    font-size: 15px;
}
.chronique > div > .linkAlbum > h3{
    font-size: 21px;
    margin: 0;
    padding: 5px;
    transition: 0.5s;
}
.chronique > div > .linkAlbum > img{
    height: 200px;
    width: 200px;
    object-fit: cover;
}
.propsArtiste{
    background-color: white;
    box-shadow: 0px 5px 5px silver;
    display: block;
    width: 100%;
    height: 0px;
    font-size: 13px;
    line-height: 30px;
    transition: 0.3s;
    text-decoration: none;
    color: white;
    background: linear-gradient(#27558D, #27558D);
    transition: 0.5s;
    z-index: 1000;
    overflow: hidden;
}
.propsArtiste:hover{
    background: linear-gradient(rgb(108, 157, 216), #27558D);
    transition: 0.5s;
}
.chronique > div:hover .propsArtiste{
    height: 60px;
    transition: 0.3s;
}

.organisation{
    display: flex;
    justify-content: center;
    font-size: 25px;
    text-align: center;
    color: black;
    font-weight: bold;
}
.organisation a{
    display: block;
    margin: 0 30px;
    text-decoration: none;
    color: #27558D;
    padding: 0px 10px;
    transition: 0.3s;
}
.organisation a:hover{
    transform: scale(1.1);
    transition: 0.3s;
}
.organisation .selectOrga{
    background-color: #27558D;
    color: white;
    padding: 0px 10px;
    border-radius: 5px;
}



@media screen and (max-width: 900px) {
    .organisation{
        display: block;
    }
    .organisation a{
        display: block;
        width: 250px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 600px) {
    .chronique > div{
        width: 100px;
        height: 180px;
        margin: 10px 1px;
    }
    .chronique > div > .linkAlbum{
        display: block;
        width: 100px;
        height: 180px;
    }
    
    .chronique > div > .linkAlbum > h2{
        font-size: 12px;
    }
    .chronique > div > .linkAlbum > h3{
        font-size: 12px;
    }
    .chronique > div > .linkAlbum > img{
        height: 100px;
        width: 100px;
    }
}

