

/* couleurs 
rosé : antiquewhite
vert foncé : darkslategray
*/

*{
    font-family: Arial, Helvetica, sans-serif; 
}

a {
    color: rgb(0, 0, 0);
    text-decoration:none;
    text-transform: uppercase;
}

h1{
    font-size: x-large;
}

/* ############## HEADER ################*/
.Header_div {
    display : grid;
    grid-template-columns: 1fr 5fr 2fr 2fr 2fr 10fr 1fr;
}

.Header_div img {
    margin-top: 10px;
}

#logo{
    display: flex;
    margin-left: 20px;
    grid-column: 1;
}

#logo h1 {
    width: max-content;
}

/* #################################################################################################### */

.ecouter img{
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: pointer;
}
.ecouter:hover img{
    transform: scale(1.1, 1.1);
}
.ecouter{
    grid-column: 3;
    text-align: center;
}

.valider{
    grid-column: 4;
    text-align: center;
}

.recommencer{
    grid-column: 5;
    text-align: center; 
}
#again {
    transform: rotate(70deg);
    transition: all 0.5s ;
}

#again:hover {
    transform: rotate(360deg);
}

/* #################################################################################################### */

#options{
    position: fixed;
    display : flex;
    border-radius: 10px;
    top: 0px;
    right: 10px;
    height: 140px;
    z-index: 100;
    transition: all 0.5s ease-in-out;

}
.sous {
    display: flex;
    flex-direction: column;
    margin-right: 30px;
    list-style-type: none;
}

.slide{
    display: flex;
    position: relative;
    bottom: -80px;
    background-color: white;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    width: 7vh;
    height: 7vh;
    cursor: pointer;
}
#slide_buton{
    width: 50px;
    height: 50px;
    transition: all 0.5s 0.2s ease;
}

/* ----------------------- */
.quitter{
    margin-top: 10px;
    justify-content: center;
    align-items: center;
    display: flex;
    width: 7vh;
    height: 7vh;
    cursor: pointer;
    border: 3px solid rgb(7, 7, 7);
    border-radius:10px ;
    transition: all 0.5s ease-in-out;
}

.cross{
    width: 5vh;
    height: 6px;
    background: rgb(7, 6, 6);
    border-radius: 5px;
    transform: rotate(-45deg);
    transition: all 0.3s ease-in-out;
}

.cross::before{
    content: '';
    position: absolute;
    width: 5vh;
    height: 6px;
    background: rgb(8, 7, 7);
    border-radius: 5px; 
    transform: rotate(90deg);
}

.quitter:hover .cross{
    transform: rotate(135deg);
    background-color: lightpink;
}

/* ----------------------- */
.espaceur{
    height: 2vh;
}

/* DIV SUIVANT************************************/
#Suivant_div{
    position: fixed;
    z-index: 100;
    top: 50%;
    display: none;
    grid-template-columns: 1fr 20fr 1fr;
}
#precedent{
    grid-column: 1;
    align-items: left;
    opacity: 0.1;
}
#precedent img{
    height: 100px;
    display: none;
}
#suivant{
    grid-column: 3;
    align-items: right;
    opacity: 1;
    cursor: pointer;
}
#suivant img{
    height: 150px;
}

#Results {
    grid-column: 2;
    height: 200px;
    width: 400px;
    border: 3px, solid, black;
    border-radius: 5px;
    background-color: whitesmoke;
    align-content: center;
    padding: 30px;
}

.BlackBoard_div{
    justify-content: center;
    border: solid 3px darkolivegreen;
        background-color:antiquewhite;
    width: 99%;
    margin: auto;
}
.grid_img  {
    width: 100%;
    margin: 0 auto;
    display: flex;
        background-color:antiquewhite;
}
.imgBB {
    width: 200px;
    text-align: center;
    background-color:antiquewhite;
}
.grid_txt {
    display: flex;
    background-color:antiquewhite;
    height: 40px;

}

.grid_txt > div {
    width: 200px;
    text-align: center;
}



/*############## CLAVIER   ###################*/
#Clavier1_div {
    height: auto;
    background-color: rgb(224, 223, 190);
    justify-content: center;
    margin: auto;
    cursor: pointer;
    position: fixed;
    bottom: 10px;
    width: 99%;
    border-radius: 5px;
}

.ligne {
    display: flex;
    width: 100%;

}

.ligne div {
    width: 200px;
    text-align: center;
    border: solid 1px darkolivegreen;
    border-radius: 3px;
}

.delete{
    background-color: bisque;
}




