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

body {
background-color: white;
font-family: 'Manrope', sans-serif;
}

a {
text-decoration: none;
color: #9D5964;
}

a:visited {
text-decoration: none;
color: #7F6350;
}

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


header {
float: left;
width: 100%;
background-color: #CEA9AF;
margin-bottom: 10px;
padding-left: 1%;
}

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

header h2 {
font-size: 1.5em;
font-weight: 700;
}

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

header h4 {
font-size: 1em;
font-weight: 600;
font-style: italic;
}

header nav {
	float: right;
	padding-right: 5%;
	margin-top: 0px;
	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: 1em;
	color : #9D5964;
	margin-top: 5px;
	text-align: center;
	text-decoration: none;
	font-weight: 700;
	margin-right: 4px;
}

header nav a:visited {
	color : #7F6350;
}

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



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





main {
width: 95%;
max-width: 1000px;
margin-left: auto;
margin-right: auto;
}

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

main h2 {
font-size: 1.5em;
font-weight: 700;
}

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

main h5 {
font-size: 1em;
font-weight: 400;
}

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



.solid-color {
float: left;
background-color: #B6A798;
width: 100%;
border-radius: 15px;
height: auto;
}


.textbox{
width: 75ch;
margin-left: auto;
margin-right: auto;
margin-top: 10px;
margin-bottom: 10px;
background-color: #E3D3C0;
padding-left: 1%;
padding-right: 1%;
border-weight: 1%;
border: solid black;
}


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


article {
float: left;
width: 27.333%;
background-color: #E3D3C0;
margin-left: 2%;
margin-right: 2%;
margin-top: 10px;
margin-bottom: 10px;
padding-left: 1%;
border-weight: 1%;
border: solid black;
}


.box-for-articles {
float: left;
width: 100%;
margin-bottom: 10px;
height: auto;
}

.holder {
width: 93%;
float: left;
background-color: #E3D3C0;
margin-left: 2%;
margin-right: 2%;
margin-top: 10px;
margin-bottom: 10px;
padding-left: 1%;
border-weight: 1%;
border: solid black;
}


.picture-in-main {
background-image: url("../images/deskphoto.jpg");
position: relative;
display: block;
max-width: 1000px;
height: 600px;
float: left;
margin-bottom: 10px;
margin-top: 0;
margin-right: auto;
margin-left: auto;
background-repeat: no-repeat;
background-size: contain;
width: 100%;
}


footer {
float: left;
width: 100%;
background-image: url("../images/headertextureimage.jpg");
height: 60px;
margin-top: 1%;
padding-left: 1%;
}






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

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

header nav ul, nav:active ul {
	display: none;
	position: absolute;
	background-color: #E3D3C0;
	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: auto;
}

}



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

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

.picture-in-main {
background-image: url("../images/deskphoto-900.jpg");
max-width: 900px;
height: 200px;
margin-bottom: 20px;
}

}



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

}