/*TODO

- When all css is deleted, the homepage on mobile chrome is a smaller size
than all the rest of the pages. I need to figure out why.
- Remake css so that the viewing experience is good on modile.
- Remake css so that the text is the same size, and or effectively
sized on mobile browsers so that it is easy to see.
- Change the <p> with small amounts of text to <span> and make sure
the css reflect this and bolds the correct text, and keeps the
other paragraphs with lots of text as normal text.
- Give <p> with lots of text more room between eachother so that
they are easier to read.
- Give the other headings a boldness level
- Get open source font file with different boldness settings.
*/




/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
   I should try css normalize
*/


html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
} 



/* Below is styling, above is a css reset */


* {
	box-sizing: border-box;
}


html, body {
	margin: 0;
	padding: 0;
	background-color: rgba(15, 25, 25);
	color: white;
	font-size: 20px;
}

.nav ul {
	margin: 0;
	float: left;
	width: 55%;
	padding: .3rem 1rem;
}

.nav ul + ul {
	float: right;
	width: 45%;
}

.nav ul + ul li {
	display: inline;
	float: right;
}

.nav li {
	display: inline;
	
}

.nav a {
	padding: .2rem;
	color: white;
	text-decoration: none;
}

.main-nav {
	padding-top: 1rem;
	text-align: left;
	font-size: 1.25rem;
	font-weight: lighter;
	overflow: auto;
}

.main-nav li {
	padding: 0.5% 0.5%;
}



.nav a:hover {
	background-color: rgba(255, 255, 255, 0.3)
}


.main-header {
	
	background-color: rgba(15, 25, 25);
	border-bottom: solid white 3px;
	padding-bottom: 1rem;
}


.container {
	max-width: 80rem;
	font-size: 1.25rem;
	padding: 0 1rem;
	margin: 0 auto;
}

.container h1 {
	font-size: 1.7rem;
	font-weight: bold;
}

.container span {
	font-weight: bold;
}

.inline-content-image {
	display: block;
	margin-left: auto;
	margin-right: auto;
	max-width: 70%;
	height: auto;
	width: auto;
}

.vertical-image {
	max-height: 40rem;
}

.tag {
	color: rgb(128, 128, 128);
}

.tag-list p {
	border-bottom: 2px solid rgb(128, 128, 128);
	margin-bottom: 10px
	
}

.tag-list button {
	display: inline;
	margin: .5em .5em .5em .5em;
	font-size: 1.2rem;
	background-color: rgb(15, 25, 25);
	color: rgb(128, 128, 128)
}

button.download {
	display: inline;
	margin: .5em .5em .5em .5em;
	font-size: 1.2rem;
	background-color: rgb(107, 107, 107)
}

.tag-list .clicked {
	background-color: rgb(72, 168, 209);
	color: rgb(0, 0, 0)
}

.tag-list p {
	font-size: 1.25em;
}

.hidden {
	display: none;
}

section  *{
	margin: .6rem 0;
}

.blog-post a {
	font-size: 1rem;
}

.blog-posts h1 a:link{
	color: rgb(99, 205, 80);

}
.blog-posts h1 a:visited{
	color: rgb(74, 223, 213);
	
}

.blog-posts h1 a:link:hover {
	background-color: rgba(255, 255, 255, 0.3)
}

b {
	font-weight: bold;
}


@media screen and (max-width: 350px){
	html, body {
		font-size: 13px;
	}
}

@media (min-width: 351px) and (max-width: 700px) {
	html, body {
		font-size: 15px;
	}
}


/*Only hover if the browser supports it*/

@media (hover) { 
	.tag-list button:hover {
		background-color: rgba(72, 168, 209, 0.7);
		color: rgb(33, 33, 33)
	}
	button.download:hover {
		background-color: rgba(72, 168, 209, 0.7);
		color: rgb(33, 33, 33)
	}
}