.scroller {
    position: fixed;
    top: 80px;
    bottom: 50px;
    left: 0;
    right: 0;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-snap-type: y mandatory;
}
.scroller .carrousel {
    position: relative;
    width: 100%;
    height: calc(100vh - 130px);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 20px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}
.artiste {
    width: 85%;
    display: flex;
    align-items: center;
	justify-content: flex-start;
	margin-bottom: 20px;
}
.artiste h1 {
    margin: 0 0 0 100px;
    padding: 0;
    text-align: left;
    font-size: 30px;
}
.linkband {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 30px;
}
.linkband a {
    margin: 0;
    padding: 0;
}
.linkband img {
    display: block;
    width: 40px;
    height: 40px;
    object-fit: contain;
}
h2{
	margin: 0 0 0 20px;
	padding: 0;
}
.autolink{
	margin: 0;
	padding: 0;
}
.fenetre {
    width: 85%;
    height: calc(100% - 80px);
    overflow: hidden;
}
.piste {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.6s ease;
}
.piste img {
    height: 100%;
    width: auto;
    flex-shrink: 0;
    display: block;
    object-fit: contain;
}
.bouton {
	position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border: none;
    background: rgba(0, 0, 0, 0);
	text-shadow: 0 0 10px black, 0 0 20px black;
    color: white;
    font-size: 40px;
    cursor: pointer;
	z-index: 10;
}
.precedent {
    left: 2px;
}
.suivant {
    right: 2px;
}

@media (max-width:900px){
	
}