@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

body {
    margin: 0px;
    padding: 0px;
    font-family:  "Noto Sans", sans-serif;
    font-optical-sizing: auto;
}
div {
    box-sizing: border-box;
}

#cache {
    display: none;
    background-color: black;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 100;
    opacity: 0.8;
}

#cache_details {
    display: none;
    background-color: black;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 1000;
    opacity: 0.8;
}

#vue_parfum {
    display: none;
    background-color: white;
    width: 80%;
    height: 80%;
    position: fixed;
    top: 10%;
    left: 10%;
    z-index: 1000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: auto;
}

#header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 50px;
    text-align: center;
    width: 100%;
    /* align-content: center; */
    align-items: center;
    background: firebrick;
    color: white;
    margin-bottom : 15px;
    padding-top: 40px;
    padding-bottom: 40px;
}

#header .logo {
    font-size: 1.5em;
}

#header .slogan {
    font-size: 1em;
    font-style: italic;
    font-weight: 200;
}

#footer {
    position: fixed;
    bottom: 0px;
    padding-bottom: 10px;
    padding-top: 10px;
    background: black;
    color: white;
    width: 100%;
    text-align: center;
}

#content_recherche {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

#recherche {
    width: 90%;
    font-size: 1.5em;
    border-radius: 15px;
    text-align: center;
    border:1px solid #cfcfcf;
    padding: 10px;
    margin: auto;
    z-index: 101;
}

#recherche:focus {
    outline: none;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border:0px;
}

#resulats_recherche {
    position: absolute;
    width: 95%;
    background-color: brown;
    /* border-radius: 5px; */
    /* border: 1px solid #cfcfcf; */
    padding: 10px;
    margin: auto;
    top: 39px;
    z-index: 101;
    display: none;
    color: white;
}

#reponse {
    display: none;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin: 10px;
    flex-wrap: wrap;
    gap: 30px;
}

#recommande {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    width:100%;
    box-sizing: border-box;

}

#recommande .titre {
    padding: 10px;
    background: #ededed;
    width: 100%;
    text-align: center;
}

#recommande img {
    width: 100%;
    max-width:400px;
}

#propo01 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 10px;
    background-color: wheat;
    width:50%;
}

#propo01 img {
    width: 100%;
}

#propo02 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 10px;
    background-color: gainsboro;
    width:50%;
}

#propo02 img {
    width: 100%;
}

#ligne2 {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}

.famille {
    text-align: center;
    width:100%;
    background-color: #ededed;
    padding: 10px;
}

.notes {
    display: flex;
    gap: 10px;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 30px;
    max-width: 400px;
}

.entete_notes {
    font-weight: bold;
}

.liste_notes {
    font-style: italic;
    line-height: 46px;
}

.liste_notes a {
    text-decoration: none;
    color: black;
    border: 1px solid #cfcfcf;
    padding: 6px 16px;
    background: #f5f5f5;
    border-radius: 17px;
    text-transform: capitalize;
    text-wrap: nowrap;
}

.cale_bas {
    width:100%;
    background-color: #ededed;
    padding: 20px;
    text-align: center;
}


.titre_propos {
    text-align: center;
    width:100%;
    background-color: #ededed;
    padding: 10px;
    text-transform: uppercase;
    font-size: 0.9em;
}

.container_propos {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.container_propos .propos {
    width:50%;
}

.container_propos .propos img {
    width: 100%;
}

#form_connect {
    text-align: center;
}

.input_connect {
    width: 90%;
    font-size: 1.3em;
    border-radius: 15px;
    text-align: center;
    border:1px solid #cfcfcf;
    padding: 10px;
    margin: auto;
    z-index: 101;
    margin-top:20px;
}

.btn_connect {
    width: 90%;
    margin-top: 15px;
    background: black;
    color: white;
    text-transform: uppercase;
    padding: 14px;
    border-radius: 10px;
    border: 0;
}