/* RESET - DO NOT EDIT */

html, body, div, span, h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, img, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, a, article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
    /* Cancel out some differences between browser defaults */
    margin: 0;
    padding: 0;
    border: 0;
}
 
* {
    /* The width of an element will be the size of its border box, not its content box (which is the normal default). */
    box-sizing: border-box;
}

/* END OF RESET */


/* YOUR ANSWER HERE */
/* TYPOLOGY and COlour*/
body{
	font-family: Arial ;
	color: #444;
}
img{
	width: 100%;
	height: auto;
}
h1, h2{
	font-family: Georgia  ;
	font-size: 2rem;
}
h1{
	font-size: 1.2rem;
}
header{
	background-color: #000;
	color: white;
	font-size: .7rem;
}
nav, footer{
	background-color: #444;
}
div{
	background-color:  #e0e0e0;
}
footer a:hover{
	color: #f00;
}
nav a:hover{
	color: #f00;
}
nav > a{
	color: white;
	text-decoration: none;
}
footer > a{
	color: white;
	text-decoration: none;
}

/* FLEX, MARGIN AND PADDING */
header{
	display: flex;
	justify-content: space-between;
	gap: 1rem;

}
header > img{
	height: 5rem;
	width: 5rem;
}
h1{
	align-content: center;
	padding: .5rem;
}
nav{
	display: flex;
	flex-flow: column;
	padding: 1rem;
}
nav > a{
	justify-content: space-between;
}
main p{
	padding: 1rem;
	margin: .5rem;
}

.guitar01{
	border: 1px solid black;
	border-radius: 1rem;
}
.guitar02{
	border: 1px solid black;
	border-radius: 1rem;
}
div{
	margin: 1rem;
	display: flex;
	flex-flow: column;
	padding: 1rem;
}
footer{
	display: flex;
	flex-flow: column;
	padding: 1rem;
}

/* RESPONSIVE */
@media screen and (min-width: 58em) {
    body {
        max-width: 100%;
        display: grid;
        grid-template-columns: 1fr 28rem 28rem 1fr;
        grid-template-areas:
            ". header header ."
            ". nav nav ."
            ". main main ."
            ". aside aside ."
            ". footer footer .";
    }

    header {
        grid-area: header;
    }

    nav {
        grid-area: nav;
    }

    main {
        grid-area: main;
    }

    aside {
        grid-area: aside;
        /* display: grid; */
        /* grid-template-columns: 1fr 1fr; */
        /* gap: 2rem; */
    }

    footer {
        grid-area: footer;
    }
	
/* FLEX */
 nav {
        display: flex;
		flex-direction: row;
        justify-content: center;
        /* align-items: center; */
		padding: 1rem;
    }

    nav a {
        display: block;
        padding: 1rem;
    }


aside{
	display: flex;
	flex-direction: row;
}

footer {
        display: flex;
		flex-direction: row;
        justify-content: center;
        /* align-items: center; */
		padding: 1rem;
    }

    footer a {
        display: block;
        padding: 1rem;
    }


}


@media screen and (min-width: 86em) {
	body{
		width: 100%;
		height: auto;
		grid-template-columns: 1fr 20rem 64rem 1fr;
		grid-template-areas:
							" . header header . "
							" . nav nav . "
							". aside main . "
							" . footer footer . ";
	}
	header{
		grid-area: header;
	}
	nav{
		grid-area: nav;
	}
	aside{
		grid-area: aside;
		/* display: grid; */
		/* grid-template-columns: 1fr 1fr; */
		/* gap: 2em; */
	}
	main{
		grid-area: main;
	}
	footer{
		grid-area: footer;
	}

	/* FLEX */

	
	aside{
		display: flex;
		flex-direction: column;
	}
	
}