*, ::before::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: Arial, Helvetica, sans-serif;
	height: 100vh;
}

nav {
    height: 70px;
    width: 100%;
    background: #333;
}

.liste-nav {
    width: 100%;
    height: 100%;
    text-align: center;
}

.item-nav {
    display: inline-block;
    line-height: 70px; /*centrer en hauteur sur Y*/
    font-size: 25px;
    margin: 0 15px;
    cursor: pointer;
    
}

.item-nav a {
    text-decoration: none;
    color: #f1f1f1;
}

.btn-toggle-container {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    display: none;
}

.btn-toggle-container img {
    width: 40px;
}

.banniere{
    padding-top: 20px;
	text-align: center;
}

.container{
	position: relative;
	width: 80%;
    padding: 1%;
	margin: 20px auto;
	height: auto;
	background-color: #f5f2ff;
	border-radius: 10px;
	box-shadow: 6px 6px 0px #a292b8;
}

h1{
    font-family: Prosto one, sans-serif;
	text-align: center;
	font-size: 38px;
    text-transform: uppercase;
    padding-bottom: -25px;
    padding-top: 30px;
    line-height: 40px;
}

h2{
    font-family: Prosto one, sans-serif;
	text-align: center;
	font-size: 25px;
    font-weight: 700;
    padding: 10px 0px 20px 0px;
    text-transform: uppercase;
    line-height: 133%;
    text-decoration: underline;
}

h3{
    font-family: Prosto one, sans-serif;
    text-align: center;
	font-size: 20px;
    font-weight: 700;
    padding: 10px 0px 20px 0px;
    text-transform: uppercase;
    line-height: 133%;
}

.photo {
    width: auto;
    padding-top: 15px;
    padding-bottom: 15px;
	text-align: center;
}

.bloc-texte {
    display: inline-block;
    vertical-align: top;
    width: 50%; 
    margin: 10px 30px 10px 70px;
}

figure {
    display: inline-block;
    position: right;
    width: 30%;
    /* margin: 10px; */
}

/* p, li, caption{
	font-size: 15px;
	text-align: justify;
}

p span{
	font-weight: bold;
} */

.tableau {
    display: flex;
    width: 80%;
    padding-top: 20px;
	margin: auto;
    margin-bottom: 2%;
    justify-content: center;
}

thead{
	font-style: bold;
	background-color: #c6c3d4;
}

table, th , td{
	margin-bottom: 15px;
	border: 1px solid black;
	background-color: #e9ecf0;
	text-align: center;
	font-size: 20px;
	color: #273745;
}

caption,
.caption {
	font-style: italic ;
	padding: 2%;
    text-align: center;
}

.sources {
    text-align:  center;
}

.retour{
	border:1px solid black ;
	padding: 1%;
	background-color: #a292b8;
	border-radius: 10px;
}

.portraits {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    text-align: center;
    font-weight: bold;
}

.vinyles {
    display: flex;
    flex-wrap: wrap;
    align-content: stretch;
    justify-content: space-around;
    
}

footer{
	position: relative;
	align-items: center;
	/* margin-top: 20px; */
	margin: auto;
	height: auto;
	width: 80%;
	text-align: center;
	/* border:1px solid black ; */
	padding: 1%;
	background-color: #a292b8;
	border-radius: 10px;
}

@media screen and (max-width: 940px){
    .btn-toggle-container {
        display: block;
    }
    nav {
        border-bottom: 1px solid #f1f1f1;
    }
    .liste-nav {
        position: relative;
        top: 70px;
        display: none; /*pour la faire disparaitre*/
    }

    .item-nav {
        display: inline-block;
        background-color: #333;
        margin: 0;
    }
    h1 {
        font-size: 20px;
    }
    h2{
        font-size: 15px;
    }

    /*lorsque liste-nav va egalement contenir la classe active menu, alors:*/
    .liste-nav.active-menu {
        display: block;
    }
}
