@font-face {
    /*police spotify*/
    font-family: "Circular";
    src: url(./Circular/CircularStd-Medium.otf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Circular", sans-serif;
    cursor: default;

    -moz-user-select: none; /* Firefox */
    -webkit-user-select: none; /* Chrome, Safari, Opéra depuis la version 15 */
    -ms-user-select: none; /* Internet explorer depuis la version 10 et Edge */
    user-select: none; /* Propriété standard */
}

html,
body {
    height: 100%;
    width: 100%;
}

body {
    display: flex;
    flex-direction: column;
    background-color: #f9f9f9;
    overflow: hidden;
}

.flouPourMdp {
    position: absolute;
    z-index: 999;
    width: 100%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
}

#form_loginEtMdp {
    height: 375px;
    width: 270px;

    background-color: #f0f0f0;
    box-shadow: 0px 0px 35px black;
    border-radius: 12px;
    color: #000000;

    display: flex;
    flex-direction: column;
}

#form_loginEtMdp>label {
    margin-top: 35px;
    font-size: 2.2rem;

    margin-left: 12px;
}

#form_loginEtMdp>input {
    margin-top: 4px;
    margin-left: 12px;

    width: 230px;
    height: 40px;
    background-color: #f0f0f0 !important;
    border-radius: 12px;
    font-size: 1.5rem;
    padding-left: 4px;

    color: #000000 !important;

    border: none;

    box-shadow: -10px -10px 15px rgba(255,255,255,0.5),
    10px 10px 15px rgba(70,70,70,0.12);
}

#form_loginEtMdp>input:focus {
    color: #000000 !important;
    border: none;
    outline: none;
}

#form_loginEtMdp>.boutonLogin {
    margin-top: 32px;
    height: 50px;
    width: 250px;
    margin-left: 11px;

    background-color: #2b2b2b;
    border-radius: 12px;
    border: none;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 2rem;
    color: #ffffff;
    cursor: pointer;

    font-weight: 500;

    box-shadow: 0 0 5px rgba(0, 0, 0, 0.524);
}

.lienVersSignUp {
    width: 100%;
    height: 30px;
    margin-top: 8px;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 1.5rem;

    text-decoration: underline 1px;
}

.lienVersSignUp>span {
    cursor: pointer;
}






#form_signUp {
    height: 375px;
    width: 270px;

    background-color: #f0f0f0;
    box-shadow: 0px 0px 35px black;
    border-radius: 12px;
    color: #000000;

    display: flex;
    flex-direction: column;
}

#form_signUp>label {
    margin-top: 35px;
    font-size: 2.2rem;

    margin-left: 12px;
}

#form_signUp>input {
    margin-top: 4px;
    margin-left: 12px;

    width: 230px;
    height: 40px;
    background-color: #f0f0f0 !important;
    border-radius: 12px;
    font-size: 1.5rem;
    padding-left: 4px;

    color: #000000 !important;

    border: none;

    box-shadow: -10px -10px 15px rgba(255,255,255,0.5),
    10px 10px 15px rgba(70,70,70,0.12);
}

#form_signUp>input:focus {
    border: none;
    outline: none;
}

#form_signUp>.boutonSignUp {
    margin-top: 30px;
    height: 50px;
    width: 250px;
    margin-left: 10px;

    background-color: #2b2b2b;
    border-radius: 12px;
    border: none;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 2rem;
    color: #ffffff;
    cursor: pointer;

    font-weight: 500;

    box-shadow: 0 0 5px rgba(0, 0, 0, 0.524);
}

.lienVersLogIn {
    width: 100%;
    height: 30px;
    margin-top: 5px;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 1.5rem;

    text-decoration: underline 1px;
}

.lienVersLogIn>span {
    cursor: pointer;
}

#messagePourConexion {
    position: absolute;
    width: 100%;
    height: 100px;

    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 10000;
    transition: .3s;
    transform: translateY(-150px);
}

#messagePourConexion>div {
    width: 300px;
    height: 80px;

    border-radius: 12px;
    background-color: #ffffff;
    border: solid 1px #cfcfcf;
    font-size: 1.3rem;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;

    padding-left: 12px;
    padding-right: 12px;

    color: #000000;
}








header {
    height: 64px;
    width: 100%;

    display: flex;
    align-items: center;

    border-bottom: 1px solid #afafaf;

    justify-content: center;
}

header>div {
    width: 50%;
    height: 100%;

    display: flex;
    align-items: center;

    /* overflow: hidden; */
}


header>div>#nomSite {
    display: flex;
    align-items: center;
    color: #000000;

    font-size: 2.5rem;
    font-weight: 600;

    margin-left: 12px;
}

header>#compte {
    display: flex;
    align-items: center;
    justify-content: end;
}

header>#compte>#logoCompte {
    height: 80%;
    aspect-ratio: 1 / 1;
    background-color: #dcdcdc;
    border-radius: 50%;

    color: #ffffff;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 2rem;
    font-weight: 700;

    padding-top: 3px;
    margin-right: 12px;
    text-shadow: 0 0 10px  #00000077;
}

header>#compte>#nomCompte {
    height: 80%;
    color: #000000;

    display: flex;
    align-items: center;

    font-size: 1.7rem;
    font-weight: 700;

    padding-right: 12px;
    font-weight: 500;
}

#pagePrincipale {
    height: calc(100% - 32px - 64px);
    background-color: rgb(255, 255, 255);
}

footer {
    height: 32px;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-evenly;

    border-top: 1px solid #afafaf;

    color: rgb(255, 255, 255)
}

footer>div {
    cursor: pointer;
    width: 33%;
    text-align: center;
    font-size: 1.2rem;
}



@media screen and (max-width: 650px) {

    #ajouteurMusiqueBiblio,
    #volume {
        visibility: hidden;
    }
}

@media screen and (max-width: 600px) {
    #containerDeTitreParent {
        height: calc(100% - 130px);
    }

    #lecteurTitreBiblio {
        height: 130px;

        flex-direction: column;
        align-items: start;
    }

    #lecteurTitreBiblio>#titreEtArtiste {
        padding-left: 32px;
        width: 100%;
        height: 60px;

    }

    #lecteurTitreBiblio>#infoTemporelleSon {
        width: calc(100% - 64px);

        height: calc(100% - 60px);

        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: center;

        margin-left: 32px;
    }

    #lecteurTitreBiblio>#volume {
        display: none;
    }

    footer>div {
        font-size: .8rem;
    }
}

@media screen and (max-width: 500px) {
    #musiqueBiblio>#artisteEtTitreMusiqueBiblio {
        width: 250px;
    }

    #musiqueBiblio>.tempMusiqueBiblio {
        display: none;
    }
}

@media screen and (max-width: 400px) {


    header>div>#nomSite {
        font-size: 1.5rem;
    }

    header>#compte>#nomCompte {
        font-size: 1.3rem;
    }

    /*//////////////////////////////////*/


    #containerDeTitreParent {
        height: calc(100% - 120px);
    }

    #lecteurTitreBiblio {
        height: 120px;
    }

    #lecteurTitreBiblio>#titreEtArtiste {
        height: 40px;
    }

    #lecteurTitreBiblio>#infoTemporelleSon {
        height: calc(100% - 40px);
    }
}