/*colors - sets var for colors I may want to use repeatedly*/
:root {
	--red: #990606;
	--orange: #ff730b;
	--yellow: #f0c53f;
	--green: #425435;
	--blue: #052b9a;
	--purple: #7f64a3;
	--pink: #fb6799;
	--black: #000000;
	--white1: #ece4e4;
	--white2: #ececf4;
	--brown: #bf9d78;
	--clear: #00000000;
}

/*fonts - imports fonts*/
@font-face {
	font-family: "Title";
	src: url("./fonts/actionj.ttf");
}

@font-face {
	font-family: "Heading";
	src: url("./fonts/tomhand.ttf");
}

@font-face {
	font-family: "Navbar";
	src: url("./fonts/tomhand.ttf");
}

@font-face {
	font-family: "Notice";
	src: url("./fonts/tomhand.ttf");
}

@font-face {
	font-family: "Body";
	src: url("./fonts/tomnr.ttf");
}

/*elements*/
body {
    font-family: "Body";
	background-image: url("./images/flower_bg.jpg");
	background-size: 40em;
	background-color: var(--green);
}

header {
    margin: 0;
	padding-top: 1em;
}

header a {
	text-decoration: none;
}

header a:hover {
	color: var(--white1);
	text-decoration: none;
}

h1 {
	font-family: "Title";
	font-size: 6em;
	color: black;
	font-weight: normal;
}

h1:hover {
	color: var(--white1);
}

h2 {
	font-family: "Heading";
}

h3 {
	font-family: "Body";
}

main {
    flex: 1; /*length regardless of content*/
    order: 2; /*order of flexible items realtive to other flexible items in #flex*/
}

button {
    font-family: 'Heading';
	font-size: larger;
	width: 5em;
	height: 2.5em;
	border: 0;
}

button:hover {
	border: 2px solid black;
}

strong {
	color: var(--red)
}

hr {
	border: 1px dashed var(--brown);
}

a {
	color: var(--blue);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

/*classes*/
.headerStyle {
	background-image: url("./images/brown_paper.jpg");
	background-size: 256px;
	background-color: var(--brown);
}

.accent1 {
	background-image: url("./images/yellow_paper.jpg");
	background-size: 256px;
	background-color: var(--yellow);
}

.accent2 {
	background-image: url("./images/brown_paper.jpg");
	background-size: 256px;
	background-color: var(--brown);
}

.plain1 {
	background-image: url("./images/paper.png");
	background-size: 70px;
	background-color: var(--white1);
}

.plain2 {
	background-image: url("./images/lined_paper.png");
	background-size: 300px;
	background-color: var(--white2);
}

.fontSmaller {
	font-size: smaller;
}

.art img {
	/* border: 2px solid black; */
	box-shadow: 0px 2px 4px #00000050;
}

/*IDs*/
#container {
    max-width: 800px; /*width of page contents, if this is changed remember to change media query*/
    margin: auto; /*centers div*/
}

#navbar {
    font-size: larger;
	font-weight: bold;
}

#navbar li {
	font-family: "Navbar";
    border: 1px dashed var(--clear);
}

#flex {
    display: flex; /*flex container*/
}

@media only screen and (max-width: 700px /*-100 of container max-width*/) {
    body {
		background-size: 20em;
	}
	
	h1 {
		font-size: 3em;
	}
}