/*Reset*/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td 
{
    border: 0;
//	font-family: Times New Roman, Garamond, serif;
	font-family: system-ui, helvetica, sans-serif;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}

html 
{
	overflow-y: auto;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust:     100%;
	height:100%;
	width:100%;
}

body 
{
	height:100%;
	width:100%;
}

*, *:before, *:after 
{
	box-sizing: border-box;
    -moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

main > div
{
	margin: 25px auto;
	width: 70%;
}

h1, h2, h3 
{
	font-weight:bold;
	margin:5px;
}

h1 
{
	font-size: 2em;
}

h2 
{
	font-size: 1.3em;
	text-align: center;
}

h3 
{
	padding-top: 15px
}


p 
{
	margin:5px;
}

a
{
	color:black;
}

ul
{
	margin-left: 20px;
}


a:hover
{
	color:green;
}

.right
{
	text-align: right;
}

.center
{
	text-align: center;
}

hr /* Horizontal Rule   */
{
	width: 70%;
/*	border-top: 1px dashed; */
}

/*STYLE*/

.logo {
	display: inline-block;
	vertical-align:middle;
}

.head {
	display:inline-block;
	text-align: center;
	// picture width is 250;
	width: calc(90% - 250px);
}

header
{
	margin-bottom: 50px;
	background-color: whitesmoke;
}


header p {
	margin-top: 0;
    font-size: 1.1em;
}

header h1 {
	margin-bottom:10px;
}

footer
{
	min-height: 325px;
	padding: 50px;
	background-color: lightblue;
	position: relative;
	
}

footer > div 
{
	width: 32%;
	display: inline-block;
	position: relative;
	vertical-align: top;
	
}

.twoup
{
	width: 49%;
	display: inline-block;
	position: relative;
	vertical-align: top;
	text-align: center;
	font-weight:bold;
}

#clubevents
{
	position: relative;
	display: flex;
    flex-flow: row wrap;
    justify-content: center;
}
#clubevents h2 {
	width:100%;
}
#clubevents > div
{
	width: 400px;
	height: 400px;
	position: relative;
	background-color: darkgrey;
	display: inline-block;
	vertical-align: top;
	margin: 10px;
}
#clubevents > div > div
{
	width: 400px;
	height: 400px;
	position: relative;
	color: rgb(255 255 255);
	text-shadow: 0 0 3px #3a3a3a;
}
#clubevents > div > div h3
{
	font-size: 1.3em;
	text-align: center;
	margin: 0;
}
#clubevents > div > div p
{
	visibility: hidden;
	padding: 20px;
}
#clubevents > div > div:hover, #clubevents > div > div:focus

{
	background-color: #80808085;
}
#clubevents > div > div:hover p
{
	visibility: visible;
}
#clubevents > div img
{
	position: absolute;
}

.imgdiv
{
	position: relative;
}

.imgdiv > img
{
	vertical-align: middle;
	max-width: 39%;
	border-radius: 50%;
}

.imgdiv > div
{
	display: inline-block;
	position: relative;
	width: 60%;
	padding-left: 20px;
	vertical-align: middle;
}

@media screen and (max-width: 600px) {
	footer > div 
	{
		width:100%;
		text-align: center;
	}

	footer > div.right 
	{
		text-align: center;
	}
	
	
}