/* custom property */

:root {
	--global-color-1: #21aab4;
	background-color: white;
}
* {
	margin: 0;
	padding: 0;
}

/* the styles for the elements */
body {
	font-family: Arial, Helvetica, sans-serif;
    font-size: 100%;
    margin-left: 1em;
	width: 90%;
	margin: 0 auto;
	border: 3px solid black;
	background-color: #fffded;
	text-indent: 1em;
}
a:focus, a:hover {
	font-style: italic;
	
}
a:visited{
	color: azure;
}
/* the styles for the header */
header {
	padding-top: 1.5em;
	padding-bottom: 2.0em;
	border-bottom: .5em solid rgb(102, 147, 230);
	background-image: linear-gradient(
		30deg, rgb(28, 209, 230) 0%, rgb(164, 245, 230) 30%, white 50%, #a1d2f1 80%,  #ebbaf8 100%);
}
header h2 {
	font-size: 150%;
	color: rgb(20, 111, 4);
	
}
header a{
	text-decoration: none;
}
header h3 {
	font-size: 130%;
	font-style: italic;
	
}
header img {
	float: left;
	padding: 0 30px;
}

.shadow {
	text-shadow: .1em .1em .1em #f1f157;
}
/* nav bar styles */
#navbar{
	width: 100%;
	
}
#navbar ul{
	display: flex;
	flex-direction: row;
	list-style-type: none;
	justify-content: space-between;
	padding-bottom: 1em;
}
#navbar ul li{
	width: 23%;
	
	
}
#navbar ul li.lastitem{
	padding-right: none;
}
#navbar ul li a{
	display: block;
	background-color: var(--global-color-1);
	text-decoration: none;
	
}
#navbar ul ul{
	display: none;
	position: absolute;
	top: 100%;
}
#navbar ul ul li ul a {
	position: absolute;
	left: 100%;
	top: 100%;
}
#navbar ul li:hover > ul {
	display: block;
}
#navbar > ul::after {
	content: "";
	clear: both;
	display: block;
	color: white;
	background-color: #21aab4;
}
/* the styles for the main content */
main {
	clear: left;
	padding: 0 30px;
	
}

/* the styles for the disclaimer content for the advanced sea kayaker */

#disclaimer{
	width: 90%
	text-align: center;
	border: 2px solid black;
	padding-bottom: .5em;
	margin-bottom: 1em;
}
#disclaimer ul{
	list-style-position: inside;

}
#orca{
	width: 100%;
}

main img{
	clear: both;
	padding-left: 1em;
	float: right;
	width:42%
}
article{
	width: 55%;
	border: 2px solid black;
}
article ul{
	list-style-position: inside;
}
main h2 {
	color: black;
	font-size: 130%;
	padding: .5em 0 .25em 0;
	
}
#book_now{
	display: block;
	background-color: blue;
	color: white;
	font-size: 200%;
	font-weight: bold;
	text-align: center;
	display: flex;
	width: 40%;
	align-items: center;
	justify-content: center;
	margin: 1em 30%;
	padding: .75em 0em;
}



/* the styles for the footer */
footer p {
	text-align: center;
	padding: 1em 0;
	background-color: #21aab4;
	color: white;
	clear: both;
}
@media only screen (max-width: 1210px){
	main article h2{ font-size: 90%;}
}