@charset "UTF-8";
/* CSS Document */

body {
background-color: paleturquoise;
font-family: 'Montserrat', sans-serif;
}


a {
text-decoration: none;
color: black;
}

a:visited {
text-decoration: none;
color: darkturquoise;
}

a:hover {
text-decoration: underline;
color: mediumturquoise;
}


header {
float: left;
width: 98%;
background-color: darkturquoise;
padding-left: 1%;
padding-right: 1%;
border-bottom: solid grey;
}

header h1 {
font-size: 2em;
font-weight: 500;
}

header h2 {
font-size: 1.5em;
font-weight: 400;
color: darkslategrey;
}

header h3 {
font-size: 1em;
font-weight: 400;
}

header h4 {
font-size: 1em;
font-weight: 400;
}

header nav {
	float: right;
	display: block;
	position: relative;
	z-index: 50;
}

header nav ul {
	list-style: none;
}

header nav li {
	display: inline-block;
	float: left;
	padding: 1px;
	margin-right: 10px;
	margin-bottom: 20px;
}


header nav a {
	font-size: 0.9em;
	color : darkturquoise;
	margin-top: 5px;
	text-align: center;
	text-decoration: none;
	font-weight: 300;
	margin-right: 4px;
}

header nav a:visited {
	color : black;
	font-weight: bold;
}

header nav a:hover {
	color: black;
	text-decoration: underline;
	cursor: pointer;
}



#menu-icon {
	display: none;
	width: 40px;
	height: 40px;
	background-color: cadetblue;
	background-position: center;
	background-image: url("../images/menuIcon.png");
}
:hover#menu-icon {
	background-color: black;
}





main {
width: 100%;
max-width: 1000px;
margin-top: 2%;
margin-bottom: 4%;
float: left;
}

main h1 {
font-size: 2em;
font-weight: 700;
font-style: italic;
}

main h2 {
font-size: 1.2em;
font-weight: 500;
}

main h3 {
font-size: 1.2em;
font-weight: 600;
}

main h5 {
font-size: 0.9em;
font-weight: 300;
}

main p {
font-size: 0.9em;
font-weight: 400;
}



.solid-color {
float: left;
background-color: paleturquoise;
width: 100%;
}


.textbox{
width: 75ch;
margin-left: 2%;
margin-right: 2%;
background-color: white;
border-weight: 1%;
border: solid black;
}


.linelength{
column-count: 2;
column-gap: 30px;
column-width: 100px;
}


aside {
float: left;
width: 45%;
margin-right: 3%;
padding-left: 2%;
}


article {
float: left;
width: 27.33%;
background-color: white;
margin-left: 2%;
margin-right: 1%;
padding-left: 1%;
padding-right: 1%;
padding-top: 1%;
padding-bottom: 1%;
border-weight: 1%;
border-left: solid #C2BDBD;
border-top: solid #C2BDBD;
border-right: solid grey;
border-bottom: solid grey;
}


footer {
float: left;
width: 98%;
background-color: darkturquoise;
padding-left: 1%;
padding-right: 1%;
padding-top: 1%;
padding-bottom: 1%;
border-top: solid grey;
}

footer h4 {
font-size: 1em;
font-weight: 400;
}






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

#menu-icon {
	display: inline-block;
	margin-top: 10px;
	background-image:url("../images/menuIcon.png");
}

header nav ul, nav:active ul {
	display: none;
	position: absolute;
	background-color: darkgrey;
	right: 20px;
	top: 50px;
	width: 50%;
	z-index: 250;
	padding-top: 15px;
	padding-right: 35px;
	padding-bottom: 17px;
	padding-left: 20px;
}

header nav li {
	text-align: center;
	width: 100%;
	padding: 10px 0;
	margin: 0;
}

header nav:hover ul {
	display: block;
	color: #7F6350;
}


main {
width: 100%;
max-width: 2000px;
margin-left: auto;
margin-right: auto;
}

article {
width: 44%;
height: 550px;
}

}

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

article {
width: 94%;
height: auto;
}

}

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

}