/* Stylesheet <leachens photography> Version <20230412> */

@charset "utf-8";




/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Reset
2.0 Typography
3.0 Elements
4.0 Forms
5.0 Navigation
	5.1 Links
	5.2 Menus
6.0 Alignments
7.0 Content
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 Reset
--------------------------------------------------------------*/
html {
	font-size: 62.5%; /* reduces standard 16px to 10px, makes easy to calculate in ems */
	overflow-y: scroll; /* Keeps page centered in all browsers regardless of content height */
	-webkit-text-size-adjust: 100%; /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
	-ms-text-size-adjust:     100%; /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
	box-sizing: border-box; /* Apply a natural box layout model to the document; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: #444; /*==background: rgb(101, 92, 83);*/
	/*box-sizing:border-box;*/
	}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
	display: block;
}

ul, ol, li, dl, dt, dd {
  display: block;
  padding: 0;
  margin: 0;
  list-style:none;
}

a {
	text-decoration: none;
	/*text-decoration: underline 2px;
	text-decoration: underline dotted 1px;*/
	text-decoration-skip-ink: auto;
	}

a img {
	border: 0;
}

/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	color: white;
	font-family: courier, sans-serif;
}

body {
	font-size: clamp(1.3em, 2.5vw, 2.5em);
	word-wrap: break-word;
	}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

h1,h2 {
    font-family: /*papyrus,*/ Courier New;
}

h1 {
    font-size: xx-large;
}

h2 {
	font-size: x-large;
}

p {
	margin-bottom: 1em;
}


/*--------------------------------------------------------------
3.0 Elements
--------------------------------------------------------------*/


/*--------------------------------------------------------------
5.0 Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
5.1 Links
--------------------------------------------------------------*/
a {
	color: white;
	font-weight: bold;
}

a:link,
a:visited {
	color: white;
	}

a:hover,
a:focus,
a:active {
	color: white;
	font-weight: normal;
	}


/*--------------------------------------------------------------
5.2 Menus
--------------------------------------------------------------*/

/*--------------------------------------------------------------
6.0 Alignments
--------------------------------------------------------------*/

/*--------------------------------------------------------------
7.0 Content
--------------------------------------------------------------*/

/* ----------------------- custom -----------------------------*/

.flex-container {
	display: flex;
}



/* ----------------------- Topline -----------------------------*/



/* ----------------------- navmenu -----------------------------*/







/* ----------------------- Items -----------------------------*/

.card {
	display: flex;
	flex-wrap: wrap-reverse;
	flex-direction: row;
	/*justify-content: center;*/
	margin: 2em 4em;
}

.card > * {
	flex-grow: 1;
	flex-shrink: 1;
	flex-basis: 280px;
}


.content {
	/*min-width: 200px;*/
	padding: 2em;
	/*font-size: 1.5em;*/
}

.module {
	text-align: center;
	padding: 0 4em;
}



/* ----------------------- Colors -----------------------------*/

.color1 {
	background-color: #f5f5f5; /* rgb(244,239,234) */
	color: #111; /* rgb(138,108,82) */
}
.color1 a {
	color: #8a6c52;
}
.color1 a:link,
.color1 a:visited {
	color: #8a6c52;
}
	
	
.color2 {
	background-color: #999; /* rgb(211,194,175) */
	color: white; /* rgb(255,255,255) */
	}
.color2 a {
	color: white;
}
.color2 a:link,
.color2 a:visited {
	color: white;
}





/* ----------------------- more -----------------------------*/









