:root {
	--main-colour: #4a2e05;
	--main-background-colour: #edece9;
}

html {
	margin:0;
	padding:0;
}

body {
	background-color: var( --main-background-colour );
	font-family: "Helvetica Neue", "Helvetica", sans-serif;
	font-weight: 200;
	text-align: center;
	margin: 0;
	padding: 40px 0 0 0;
	color: #423b33;
}

* {
	box-sizing: border-box;
}

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

header {

	position: fixed;
	top: 0;
	text-align: center;
	width: 100%;

	border-bottom:1px solid #f7f7f7;
	box-shadow: rgba(0,0,0,0.1) 0 0 40px;

	a {
		color: var(--main-colour);
		font-size: 13px;
		font-weight: 400;
		letter-spacing: 0.1em;
	}

	nav {
		h1 {
			font-size:16px;
			line-height:20px;
			margin:0 0 0 0;
			@media screen and (max-width: 600px) {
				margin:0;
				font-size:14px;
			}
		}
		margin: 0;
		padding: 5px 0 0 0;
		display: block;
		font-size: 16px;
		line-height:30px;
		text-transform: uppercase;
		z-index: 1000;
		background-color: var( --main-background-colour );

		a {
			font-size:14px;
			display:inline-block;
			margin:0 5px;
			@media screen and (max-width: 600px) {
				margin:0;
				font-size:12px;
			}
		}


	}

}

.intro {

	h2 {
		font-size:14px;
		font-weight: bolder;
		text-transform: uppercase;
	}

	margin:0 auto;
	padding:30px;
	max-width:800px;
	text-align:justify;
	font-size:16px;
	line-height:140%;
	letter-spacing: 5%;

	a {
		text-decoration: underline;
	}

	strong {
		font-weight:bolder;
	}
}



.container {
	width:100%;
	padding:20px 0;

	&.tags {
		padding:20px;
		max-width:800px;
		text-align:left;
		margin-left:auto;
		margin-right:auto;
	}

}

.big-photos-intro {
	max-width:800px;
	margin:0 auto;
	text-align:left;
}

.pagination-link {
	display:inline-block;
	background:#ddd;
	padding:2px 4px;
	border-radius: 3px;
	margin:0 2px;
	&.active-page {
		font-weight: bolder;
	}
}

.calendar-container {
	max-width:800px;
	width:400px;
	text-align:left;
	margin:0 auto;
	line-height:140%;
	letter-spacing:5%;

	table {
		border-spacing: 0;
		width:100%;
	}

	tr {
		&:nth-child(2n+1) {
			background-color: #0001;
		}

	}

	td {
		padding:5px;
	}

	.year {
		background-color:#0005;
		width:40px;

	}

	.month {
		width:40px;
		vertical-align: top;
	}


	a.date {
		display:inline-block;
		text-align:right;
		width:30px;
		&:hover {
			text-decoration: underline;
		}

	}
}

.big-photos {
	img {
		max-width:calc( 90vw - 40px );
		max-height:calc( 90vh - 100px );
		border-radius: 6px;

		@media screen and (max-width: 600px) {
			max-width:calc( 100vw - 40px );
			width:calc( 100vw - 30px );
		}

	}

	.img-container {
		border-radius: 10px;
		background-color:#fff;
		display:inline-block;
		padding:20px;
		margin:20px;


		@media screen and (max-width: 600px) {
			margin:20px 0 0 0;
		}

		clear:both;
		text-align:center;


	}


	.photo-title {
		font-weight: bolder;
		margin-bottom:10px;
	}

	.description {
		margin:10px auto 10px;
		max-width:500px;
		text-align:justify;
		font-size:16px;
		line-height:140%;
		letter-spacing: 5%;
	}

	.shot-date {
		margin:10px 0;
	}


	.tags {
		text-align: left;
		line-height:18px;
	}
	.photo-desc {

	}
	.exif {
		color:#666;
	}

}

.tag {
	display:inline-block;
	background:#09f2;
	padding:0 4px;
	border-radius: 3px;
	margin-bottom:4px;
}

footer {
	font-weight: 200;
	text-align: center;
	font-size: 14px;
	letter-spacing: 0.15em;
	line-height: 20px;
	margin: 30px;
}

