
@font-face {
    font-family: 'Rubik';
    src: url('/Rubik/Rubik-VariableFont_wght.ttf');

}

body {
    background-image: url("/images/02daido.jpg");
    background-attachment: fixed;

    background-size: 100%;
    background-color: black;
    position: static;
    font-family: Rubik;
}

.content{

    background-image: url("/images/motif03.jpg");
    background-size: 200px;
    background-color: rgba(0, 0, 0, 0.8);
    background-repeat: repeat;
    background-blend-mode: darken;

    left: 0;
    top: 0;
    position: fixed;
    color: antiquewhite;
    width: 30%;
    height: 100%;
    padding-left: 1em;
    padding-right: 1em;
    padding-top: 1em;

    border-width: 0px;
    border-style: solid;
    border-right-width: 2px;
    border-image: linear-gradient(#D16BA5, #86A8E7,#5FFBF1) 1;

}



#credit_02{
    color: antiquewhite;
    display: block;
    position: fixed;
    bottom: 0;
}


audio {
    /*display: flex;
   margin-left: auto; Pousse l'audio complètement à droite */
}
#back-home-link{
    background: linear-gradient(to right, #D16BA5, #86A8E7, #5FFBF1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none; /* Enlever le soulignement par défaut */
    position: relative;
}
#back-home-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px; /* Épaisseur du soulignement */
    background: linear-gradient(to right, #D16BA5, #86A8E7, #5FFBF1);
    transition: transform 0.2s ease-in-out;
    transform: scaleX(0); /* Masquer initialement */
    transform-origin: left;
}

#back-home-link:hover::after {
    transform: scaleX(1); /* Afficher le soulignement au hover */
}
