:root {
	--text: black;
	--line: IndianRed ;
	--accent: IndianRed ;
	--fill: Wheat;
}

body { 
	font-family: arial, sans-serif; 
  color: Black;
  background-image: url("/skog.jpg");
  background-size: cover;
}

body * {cursor: url(https://cur.cursors-4u.net/others/oth-3/oth213.cur), auto !important;}

* { 
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	scrollbar-color: var(--text) var(--line) }

*::-webkit-scrollbar { width: 20px; }
*::-webkit-scrollbar-track { background: var(--line); }
*::-webkit-scrollbar-thumb { background-color: var(--text); border: transparent; }

img { max-width: 100% }

nav {
	float: left;
	width: 15%;
	height: 100vh;
	position: relative;
	background-color: var(--bg);
		filter: drop-shadow(1px 1px 0 var(--text))
			drop-shadow(-1px 1px 0 var(--text))
			drop-shadow(0 -1px 0 var(--text))
			drop-shadow(1px 0 var(--text));
}

nav div {
	height: fit-content;
	width: fit-content;
	position: absolute;
	top: 50%;
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	right: -1.5vw;
	text-align: right;
}


.button { 
  font-family: Garamond; 
  width: 100%;
	display: block;
	margin: 15px 0;
	padding: 5px;
	font-size: 1.5em;
	color:var(--fill);
}

.button:hover {
  cursor: pointer;
  color: var(--accent);
}

.button1 { 
	background-image: url("/would2.jpg");
	font-size: 1em;
}

.button2 { 
	background-image: url("/mulchin.jpg");
}

.button3 { 
	background-image: url("/birch2.jpg");
	color:black;
}

main {
	float:left;
	width: 82%;
	height: 100vh;
	padding: 2em;
	overflow-y: scroll;
	background-size: cover;
	background-image: url("leavesbg.jpg"); 
	/* Right column background, underneath boxes THE DIRT IS HERE!!!*/
}

.container { 
  max-width: 1500px; 
}

section {
	margin: 2em 0;
	padding: 1em 2em;
	background-color: var(--fill);
	border: 5px solid var(--line);
	background-image: url("papey.jpg");
	background-size: cover;
}

section2 {
	margin: 2em 0;
	padding: 1em 2em;
	background-color: var(--fill);
	border: 5px solid var(--line);
	background-image: url("/photo/abees.jpg");
	background-size: cover;
}

.stripe {
	float: left;
	width: 3%;
	height: 100vh;
	background-image: url("/would4.jpg");
	background-position: center;
}

/* CUSTOM BOXES */

.duck {
  width: 30%;
  float: left;
  margin: 0 0.5rem 0 0;
}

.chicken {
  float: left;
  margin: 0 0.5rem 0 0;
}

.tas {
	filter: drop-shadow(1px 1px 0 var(--text))
		drop-shadow(-1px 1px 0 var(--text))
		drop-shadow(0 -1px 0 var(--text))
		drop-shadow(1px 0 var(--text));
}
/* CUSTOM BOXES */

.leftercolumn {
  float: left;
  width: 30%;
}

.leftcolumn {
  float: left;
  width: 40%;
}

.treecolumn {
  float: left;
  width: 5%;
}

.rightcolumn {
  float: left;
  width: 60%;
}

.fifty {
  float: left;
  width: 40%;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

@media screen and (max-width: 600px) {
  .leftcolumn, .rightcolumn, .leftercolumn, .fifty {
    width: 100%;
    padding: 0;
	}    
  .treecolumn {
		display: none;
  }
}

.main {
  text-align: center;
  background-image: url("/skog.jpg");
	background-size: cover;
  margin: 10px;
  padding: 20px;
  background-position: center;
  border: 2px solid black;
  border-radius: 50px;
}

.aside-1 {
  background-image: url("/papey.jpg");
  background-size: cover;
  padding: 20px;
  margin: 10px;
  border: 1px solid black;
}

.aside-2 {
  background-image: url("/papey3.jpg");
  background-size: cover;
  background-position: bottom;
  padding: 20px;
  margin: 10px;
  border: 1px solid black;
}

.aside-3 {
  background-image: url("/birch.jpg");
  background-size: cover;
  margin: 10px;
  padding: 20px;
  border: 1px solid black;
  text-align: center;
}

.aside-4 {
  background-image: url("/linedandpapey.jpg");
  padding: 20px;
  margin: 10px;
  border: 1px solid black;
  background-size: cover;
}

.aside-5 {
  text-align: center;
}

/* CUSTOM BOXES */

/* IMAGE GALLERY */

.gallery {
  display: flex;
  flex-wrap: wrap;
  /* space between items */
  justify-content: center;
  /* center the items */
  border: 2px solid black;
  margin: 10px;
}

.gallery-item {
  flex: 1 1 calc(25% - 20px);
  /* responsive item size */
  box-sizing: border-box;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  cursor: pointer;
}

media (max-width: 1200px) {
  .gallery-item {
    flex: 1 1 calc(33.33% - 20px);
    /* 3 columns */
  }
}

@media (max-width: 900px) {
  .gallery-item {
    flex: 1 1 calc(50% - 20px);
    /* 2 columns */
  }
}

@media (max-width: 600px) {
  .gallery-item {
    flex: 1 1 calc(100% - 20px);
    /* 1 column */
  }
}

/* IMAGE GALLERY */

hr {
	border: none;
	border-top: 1px solid black;
}

header {
	font-size: 2em;
	margin-bottom: 2rem;
	color:var(--fill);
	filter: drop-shadow(1px 1px 0 var(--text))
			drop-shadow(-1px 1px 0 var(--text))
			drop-shadow(0 -1px 0 var(--text))
			drop-shadow(1px 0 var(--text));
}

h2, h3, h4, h5, h6, p, table, details, cite, blockquote {
	margin: 1rem 0;
}

ul, ol, dl {
	margin: 1rem 0 1rem 2rem;
}

ul ul, ol ol { 
	margin: 0 0 0 2rem;
}

p, table,  ul, ol, dl {
	font-size: 1rem;
}

a { 
	color: var(--accent);
	text-decoration: none;
}

p a:hover { 
	color: var(--fill);
	background-color: var(--accent);
}

h6 { font-size: 1em; }
h5 { font-size: 1.25em; }
h4 { font-size: 1.5em; }
h3 { font-size: 1.75em; }
h2 { font-size: 2em;
	text-align: center;
	background-color: var(--accent);
	padding: 5px;
}

blockquote {
	background-color: var(--accent);
	color: var(--fill);
	padding: 1em;
}

blockquote a, blockquote code {
	color: var(--text);
}

cite { 
	display: block;
	text-align: right;
}

code, details, pre {
	background-color: var(--bg);
}

code { 
	font-family: 'Courier New', monospace; 
	padding: 2px;
}

details, pre {
	padding: 1em;
}

pre { overflow-x: auto; }

details p { margin: 1rem 0 1rem 2rem; }

table {	border: 5px solid var(--line); }
tr, td, th { border: 2px solid var(--line); }
td, th { padding: 3px }

figcaption { 
	text-align: center;
	margin: -0.5em 1em 1em 1em;
}

footer { 
	font-size: 1em;
	text-align: center;
	margin-top: 2em;
	padding: 5px;
	background-image: url("mossrock.jpg");
	background-position: center;
}

footer a { color: var(--text); }

/* CUSTOM CONTAINERS */

/* CUSTOM CONTAINERS */

@media screen and (max-width: 800px){

	nav, main, .stripe {
		float: none;
		width: 100%;
		height: fit-content;
	}
	
	nav { padding: 2vw }
	
	nav div {
		height: fit-content;
		width: 100%;
		position: static;
		-ms-transform: translateY(0);
		transform: translateY(0);
		text-align: right;
	}
	
	nav img {
		display: none;
	}
	
	.button {
		display: inline-block;
		margin: 5px;
	}
	
	main { 
		overflow: auto;
		padding: 2em 1em;
	}
	
	header { 
		text-align: center;
		font-size: 1.5em;
	}
	
	section { padding: 0 1em; }
	
	.stripe { height: 30px; }
	
	*::-webkit-scrollbar { width: 10px; }
	
}