html {
	background-color: #61b5b9;
/*	background-position: top;
   	background-size: 100vw;
   	background-repeat: no-repeat;
   	background-attachment: fixed;*/

}

body {
	font-family: 'Helvetica Neue', sans-serif;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	width: 100%;
	height: 100%;
	margin: 0px;
}

.header {
	text-align: center;
	color: #FFFFFF;
	font-size: 3vw;

	background-image: url("images/notrespassing.jpg");
	background-size: cover;
	background-position: center -350px;
	height: 20vw;

	display: flex;
	flex-direction: column;
	justify-content: center;
}

h1 {
	font-size: 6vw;
	margin: 1vw;
}

h2 {
	font-size: 2vw;
}

.paddlin {
	font-size: xx-large;
	text-shadow: 5px 5px 6px #61b5b9;
	margin-top: 5%;
	margin-bottom: 5%;
}

.excitingText {
	text-shadow: 5px 5px 6px #61b5b9;
	font-weight: bold;
	color: #db5fcb;
	font-size: large;
	font-style: italic;

}

p {
	line-height: 1.4;
}

.contentcolumns {
	display: flex;
	background-image: url(images/towpath3.jpg);
	background-size: cover;
	height: 100%;
	/*position: fixed;*/
}

.foodTable {
	font-size: smaller;
	text-align: left;
	width: 100%;
	background-color: #FFFFFF90;
	padding: 10px;
}

.packingTable {
	font-size: smaller;
	text-align: left;
	width: 100%;
	background-color: #FFFFFF90;
	padding: 10px;

	.category {
		font-weight: bold;
		padding-top: 2px;
	}

	.item {
		padding-left:10px;
	}
}

.daysTable {
	font-size: small;
	background-color: #FFFFFF90;
	padding: 10px;

	.dayColumn {
		text-align: left;
		vertical-align: top;
		width: 5%;
	}

	.distanceColumn {
		text-align: left;
		vertical-align: top;
		width: 10%;
	}

	.endingSpotColumn {
		text-align: left;
		vertical-align: top;
		width: 20%;
	}

	.lodgingColumn {
		text-align: left;
		vertical-align: top;
		width: 30%;
	}

	.notesColumn {
		text-align: left;
		vertical-align: top;
		width: 35%;
		padding-bottom: 8px;
	}

	.leftHeader {
		text-align: left;
	}

	.rightHeader {
		text-align: right;
	}
}

.imagecolumn {
	width: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;

	/*background-image: url(images/canoeonwater.jpeg);
	background-size: cover;*/
}

.canalmap {
	width: 90%;
	/*border-radius: 15%;*/
	margin-block: 5%;
}

.maincontent {
	width:50%;
	background: #FFFFFFd4;
	/*height: 100vh;*/
}

.innercontent {
	padding-inline: 2vw;
	padding-bottom: 2vw;
}

.spreadsheetButton {
	font-size: x-large;
	border: 2px;
    border-style: solid;
    border-color: #61b5b9;
    background-color: #61b5b92b;
    padding: 6px;
    cursor: pointer;
    width: fit-content;
}

.spreadsheetButton:hover {
	box-shadow: 0px 0px 6px 3px #61b5b9
}

.external {
	background-image: url('images/external-link-svgrepo-com.svg');
	background-repeat: no-repeat;
	background-position: center right;
	padding-right: 24px;
    padding-bottom: 1px;
    background-size: 20px;
}

@media (max-width: 768px) {
   .contentcolumns {
   		flex-direction: column-reverse;
   		position: initial;
   }

   .maincontent {
   		width: 100%;
   		height: initial;
   }

   .imagecolumn {
   		width: 100%;
   }

   h1 {
   		font-size: 10vw;
   }

   h2 {
   		font-size: 4vw;
   }

   .header {
   		height: 30vh;
   		background-position: center;
   }
}