.spanInfo {
    position: relative;

    background-color: #3399ff27;
    border-radius: 2px;
    padding: 2px;
    cursor: help;
    transition: 0.1s;

}

.spanInfo:hover {
    transition: 0.1s;
    font-size: 105%;
    background-image: linear-gradient(90deg, #6b11cb1a, #2574fc3d);
}

.spanInfo::after {
    content: attr(data-title);
    position: absolute;
    left: 50%;
    bottom: 125%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 4px 8px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.spanInfo:hover::after {
    opacity: 1;
}

.IntituléDeHistoire {
    display: flex;
    position: relative;
    border: solid;
    border-width: 0;
    width: 100%;
}
.ImageHistoire{
    width: 200px;
    margin-left: 30px;
    margin-top: 20px;
    transition: 0.3s;
}
.ImageHistoire:hover{
    transform: scale(1.1);
    transition: 0.3s;
}
.TitreHistoire {
    font-family: 'Raleway ExtraBold';
    position: absolute;
    left: 230px;
    right: 0;
    text-align: center;
    z-index: 1;
}

.blocDeProposition {
    border: solid;
    border-width: 0px;
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 150px;
    height: 120px;
}

.lesP {
    display: block;
    margin: 15px 0;
}

#paramètre{
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    z-index: 4;
    background-color: #000;
    color: white;
    padding: 0px 0px;
    text-align: center;
    font-family: 'Raleway ExtraBold';
    font-size: 15px;
    position: fixed;
    left: 0%;
    top: 100%;
    transform: translateY(-100%);
    width: 100%;
    height: 55px;
}
#paramètre.active {
    transition: 0.3s;
    top: 120%;
}

#paramètre .flèche{
    position: absolute;
    top:0px;
    transform: scale(0.25);
}

#paramètre .flècheDroite {
    right: 5px;
}
#paramètre .flècheGauche {
    left: 5px;
}

#paramètre .cadreCoeur{
    position: absolute;
    left: 50px;
    transform: scale(0.25);
}

#paramètre .titreAPlacer{
    font-size: 20px;
    color:aliceblue;
    margin-left: 130px;
    margin-right: 100px;
}

input[type="checkbox"] {
    transform: scale(1.5);
    accent-color: #0078ff;
    cursor: pointer;
}




#viewer {
    width: 100%;
    margin: 0;
    padding: 0;
}

iframe {
    width: 100%;
    border: 0;
    display: block;
    margin: 0;
    padding: 0;
}




#logoInscriptionInfoPlumeFinHistoire{
    width: 60%;
}


    
@media (max-width: 550px) {
    #paramètre .titreAPlacer {
        font-size: 15px;
    }
}

@media (max-width: 540px) {
    .TitreHistoire {
        font-size: 18px;
        left: 130px;
    }
        .ImageHistoire {
            width: 100px;
            height: 100px;
        }
    
        .IntituléDeHistoire {
            width: 100%;
            height: 200px;
        }
}

@media (min-width:700px) {
    p{
        margin-left: 15%;
        margin-right: 15%;
    }    
}

@media (max-width: 800px) {
    .blocDeProposition {
        position: absolute;
        bottom: -20px;
        right: 10px;
        margin: 0px;
    }
}


@media (min-width: 800px) {
    .IntituléDeHistoire {
        display: flex;
        align-items: center;
    }

    .TitreHistoire {
        margin-right: 165px;
    }
}

