*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background: #fff;
    margin-top: 80px;
    font-family: 'Cabin', sans-serif;
    overflow-x: hidden;
}

.presentationPropos{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background-color: #ff3131;
    padding: 50px;
    gap:20px;
    color: white;
    width: 100%;
}

.presentationPropos h1{
    font-size: 50px;
}

.titre2{
    font-size: 30px;
    color: #ff3131;
    margin:50px;
}


.contentPropos{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 100px;
}

.block {
    margin: -60px 20px 10px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    padding: 20px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    min-height: 250px;
    gap:10px;
    width: 90%;
}

.block p{
    font-size: 1.25em;
    margin: 10px 0;
}

#blockMusique ul{
    margin-left:20px;
}

.contentBlock{
    gap:10px;
}

.banniereProposBlock{
    margin-top: 40px;
    width: 100%;
}

.image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 60vh;
}

.banniereProposBlock img{
    width: 100%;
    object-fit: cover;
    display: block;
}

.listeMusique{
    text-align: left;
    line-height: 1.6em;
    font-size: 18px;
}

.block h3{
    margin-bottom: 30px;
    font-size: 30px;
    text-transform: uppercase;
}

.redirectionBouton{
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background-color: #ff3131;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    margin-top: 20px;
    text-align: center;
    text-transform: uppercase;
    padding: 10px;
}

.redirectionBouton:hover{
    background-color: #e8695e;
}

.containerBloc {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.containerBloc p{
    width: 90%;
}

.redirectionContact{
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.redirectionContact h2{
    font-size: 30px;
}

.animationSlide{
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animationSlideInverse {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.6s ease-out;
}

.show {
    transform: translateX(0);
    opacity: 1;
}

/* Responsive */

@media screen and (max-width: 767px) {
    .block {
        width: 90%;
        margin: 20px auto;
        text-align: center;
        align-items: center;
    }

    .contentPropos {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .image-wrapper {
        height: auto;
    }
}