/* RESET */

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;
  font: inherit;
  vertical-align: baseline;
}
 
* {
  /* Padding and borders will be subtracted from the content box width, not added to it. */
  box-sizing: border-box;
}

article, aside, audio, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section { 
  /* Make sure the browser knows how to display HTML5 elements */
  display: block;
}
/*----------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------*/
img {
    width: 100%;
}

.imgHome {
    padding: 10px;
}

.button {
    background-color: #1a1a1a;
    border: none;
    color: #808080;
    padding: 10px 24px;
    text-align: center;
    font-size: 16px;
    font-family: 'Open Sans', arial;
    cursor: pointer;
}

.button:hover {
    background-color: #000;
    color: #fff;
}

.btn {
    background-color: #454545;
    border: none;
    color: #808080;
    padding: 10px 24px;
    text-align: center;
    font-size: 16px;
    font-family: 'Open Sans', arial;
    cursor: pointer;
}

.btn:hover {
    color: #fff;
}

textarea {
    resize: none;
}

.thumb ul,li {
    display: inline;
}

.galleryThumb {
	width: 180px; 
	height: 180px;
}

body {
	font-family: 'Open Sans', arial;
    width: 75em;
	height: 100vh;
    margin: 0 auto;
}

.header-img {
    width: 100%;
	margin-bottom: 0px;
	display: none;
}

.jumbotron {
    width: 100%;
	margin-bottom: 57px;
}

main {
   padding-top: 1em;
   padding-bottom: 1em;
   background-color: #fff;
   color: #000;
   width: 100%;
}

main h1 {
    margin-left: 10px; 
    font-size: 2em;
}

main p {
    margin-left: 20px;
    margin-right: 20px;
}

main a:visited, a:link {	
	color: blue;
    text-decoration: none;
}

main a:hover {
    text-decoration: underline;
}

.asideFill {
    background-color: #1a1a1a;
    padding: 3px;
}

aside {
    padding-top: 1em;
    padding-bottom: 1em;
    /*border-left: 1px solid black/*#e6e6e6*/;
    color: #000;
    width: 50%;
	overflow: auto;
    text-align: center;
}

aside h1 {
    font-size: 2em;
}

aside p, h1, form {
	margin-left: 20px;
	margin-right: 20px;
}

section {
	padding-top: 1em;
}

section h1 {
    margin-left: 10px; 
    font-size: 2em;
}

section p {
	margin-left: 20px;
    margin-right: 20px;
}

.main-side {
	padding: 0 0 5px 0;
	background-color: #454545;
	border: 1px solid black;
	color: #fff;
}

.hr {
	display: none;
}

.menu {
	margin-top: -3.5em;
    background-color: #1a1a1a;
    font-size: 1.5em;
    width: 100%;
    height: 50px;
    display: flex;
}

.menu-icon {
    visibility: hidden;
}

.dropbtn {
    cursor: pointer;
}

.dropdown {
    position: relative;
    display: inline-block;
    line-height: 48px;
    margin-left: 5px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #1a1a1a;
    min-width: 10em;
    height: auto;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    line-height: 20px;
}

.dropdown-content a {
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    border-radius: 0;
}

.dropdown:hover .dropdown-content {
    display: block;
}

#menuToggle {
    display: none;
}

nav ul {
	line-height: 48px;
    margin-left: 5px;
}

nav li {
    color: #808080;
    display: inline;
    list-style-type: none;

}

nav a:link, a:visited {	
	color: #bfbfbf;
	background-color: transparent;
	text-decoration: none;
    padding: 10px;
}

nav a:hover	{
	color: #fff;
    text-decoration: none;
    border-radius: 10px;
}

.artistpic {
    width: 80%;
}

.painting {
    width: 100%;
    padding: 20px;
}

#wrapper {
	margin-bottom: 0;
    display: flex;
}

#artwork {
	display: flex;
	flex-wrap: wrap;
}

footer {
    width: 75em;
    height: 2em;
	bottom: 0;
    background-color: #1a1a1a;
    color: #fff;
    line-height: 30px;
    text-align: center;
	position: static;
}
/* Form */

.form p{
    line-height: 30px;
}

form {

}

input[type="submit"] {
	
}

input[type="text"], input[type="email"] {
	width: 100%;
    margin-bottom: 1em;
}

.form input[type="text"], .form input[type="email"] {
    background-color: #808080;
    border: none;
    color: #fff;
}

.required {
	color: #ff0000;
}

.contactForm {
    margin-left: 20px;
    text-align: left;
	width: 80%;
}

.contactForm textarea {
	width: 100%;
}

.blogForm {
	margin-top: 2em;
	text-align: left;
	width: 15em;
}


/* Media Queries */
@media only screen and (max-width: 81em) {
    body {
        width: 95%;
    }
	
	footer {
		width: 100%;
	}
}

@media screen and (max-width: 40em) {
    .imgHome {
        display: none;
    }
    
    .header-img {
		display: block;
	}
	
	.jumbotron {
		display: block;
		margin-bottom: 0;
	}
	
	body {
        width: 100%;
    }
    
	footer {
		width: 100%;
	}
	
    #wrapper {
        flex-wrap: wrap;
		height: auto;
    }
    
    aside {
		padding-top: 0;
        width: 100%;
		height: auto;
    }
    
    nav ul {
        line-height: 20px;
    }
    
    nav li {
        display: block;
    }
    nav a {
        display: block;
        padding: 0;
        border-bottom: 1px solid white;
    }
    nav a:hover {
        border-radius: 0;
    }
    .menu { 
        height: auto;
        display: none;
		margin-top: 0px;
        text-align: center;
    }

    .menu-icon {
        display: flex;
        width: 100%;
        padding: 10px 20px;
        background-color: #333333;
        color: white;
        cursor: pointer;
        margin-top: -0.18em;
        visibility: visible;
    }
    
    #menuToggle:checked ~ .menu {
        display: block;
    }
    
    .dropdown {
    position: relative;
    display: block;
    }

    .dropdown-content {
    display: block;
    position: relative;
    background-color: #1a1a1a;
    height: auto;
    box-shadow: 0 0 0 0;
    line-height: 20px;
    }
	
	.dropdown {
		line-height: 20px;
	}
	
	.flexslider {
		display: none;
	}
    
    .artistpic {
    width: 10em;
    }
    
    .paintingTxt {
    width: 100%;
    }
    
    .paintingTxt p {
        margin-top: 0;
    }
	
	.main-side {
	padding: 0;
	background-color: white;
	border-radius: 0;
	border: none;
	color: #000;
	}
	
	.hr {
		display: block;
	}
	
	footer {
		position: relative;
	}
	
	.galleryThumb {
	width: 120px; 
	height: 120px;
    }
    
    .asideFill {
    background-color: transparent;
    }
    
    .form input[type="text"], .form input[type="email"] {
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
    }
    
    .btn, .button {
    background-color: #1a1a1a;
    color: #fff;
    }
}
