
html,body {
width: 100%;
height: 100%;
}

body{
	min-height: 100%;
	display: flex;
	flex-direction: column;
	align-items: stretch;
}


main {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: #e5e1d8;
	background-image: url("https://www.transparenttextures.com/patterns/paper-fibers.png");
	font-family: 'Arial Black', 'Helvetica', sans-serif;
    color: #3d4234;
}


main p {
	width: 50%;
	text-align: center;
}
footer {
display: flex;
flex-direction: row;
justify-content: center ;
background-color: #3d4234;
color: white;

}

main, header, footer {
	flex-shrink: 0;
}


Nav{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	margin-right: 20px;

}

nav a {
    padding: 1em 1.5em;
    text-decoration: none;
    text-transform: uppercase; /* Military stencil style */
    font-weight: bold;
    letter-spacing: 2px; /* Adds that technical manual feel */
    color: #5b5f45; /* Olive Drab from the swatches */
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

nav a:hover {
    color: #9e3d23; /* Burnt Orange "Danger" color */
    background-color: rgba(158, 61, 35, 0.05); /* Very subtle orange tint */
    border-bottom: 2px solid #9e3d23; /* Underline effect */
}


nav a:active {
    background-color: #d9a441; /* Mustard Yellow */
    color: #fff;
}

/*CSS for artist page*/
.artist_image {
	float: left;
	margin-left: 5px;
	justify-content: center;
    
}
.artist_page p {
    width: 100%;
    text-align: left;
    text-size: 10em;
}


/*accordian*/
dt {
    background-color: #3d4234;
    padding: 0.2em 0.5em;
    color: whitesmoke;
    text-align: center;

    width: 100%;      /* full width */
    margin: 0;        /* removes centering */
    box-sizing: border-box;
}


dt~dt{
margin-top: 0.5em;
}


.center-img {
    text-align: center;
    margin-bottom: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    
}
.restore dd {
    display: none;
    text-align: center;
    max-width: 70%;
    margin: 0 auto; 
}

