/* gallery.css
	CSS for gallery small screen
	2021-06-28 at 11:29
	Paul Wehr, Handmade Art Co.
 */
body {
	background-color: #fff; color: #27221f;
	margin-top: 10px;
	font:normal normal 1em Verdana, Helvetica,"Nimbus Sans L",Arial,sanserif;
	
}
h1,h2,h3,h4,h5 { font-weight:bold; }
h1 { font-size: clamp(20px, 4vw, 22px); }
h2 { font-size: clamp(18px, 3vw, 20px); }
h3 { font-size: clamp(16px, 2vw, 18px); }
h4 { font-size: clamp(14px, 1.5vw, 16px); }
h5 { font-size: clamp(12px, 1vw, 14px); }

.mainstatic {
	width: 90vw;
	margin-left: auto;
	margin-right: auto;
	padding: 0 20px;
	border:1px solid #4CAF50;
	    border-radius: 8px;
}

p { font-size: clamp(15px, 2vw, 16px); }

p.indent:first-letter {
	margin-left:2em;
}
.photocap {
	color:#4b3c39;
	font-size: 80%;
	font-style: oblique;
	padding:5px 0px 20px 0px;
	text-align: center;
	
}

hr.ltgreen { width: 80%; border-top: 1px solid #4caf50; }

.footer {
	height: 55px;
	margin-left: auto; margin-right: auto;
}
a:link { color:#bc2d29; text-decoration: none; }
a:hover { color:#bc2d29; text-decoration: underline; }
a:active { color:#fa7b62; text-decoration: underline; }
a:visited { color:#934337; text-decoration: none;}

img.button { width:58px; height:52px; border:none; }

div.footerlinkz {
	padding-top: 30px;
	font-size: .7em;
	text-align: center;
}
div.credit { font-size: smaller;
	color: #777;
}
/* The container <div> - needed to position the dropdown content */
.CSSdropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown button with CSS */
.dropbtn {
    background-color: #4CAF50;
    color: white;
    padding: 8px 16px;
    font-size: .8em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}


/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #d3d3d3;
    min-width: 140px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    font-size: .8em;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: #bc2d29;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #f1f1f1}

/* Show the dropdown menu on hover */
.CSSdropdown:hover .dropdown-content {
    display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.CSSdropdown:hover .dropbtn {
    background-color: #aaf;
}
/* end CSS dropdown
 * https://www.w3schools.com/howto/howto_css_dropdown.asp
 */
	
