/*!
Theme Name: CodeCamp
Text Domain: codecamp
Theme URI: http://theredsunflower.com/code-camp
Author: Red Sunflower, Inc.
Author URI: https://theredsunflower.com
Description: A clean and simple starter theme that takes advantage of the WP Block Editor and Customizer.
Version: 5.0
Requires at least: 5.0
Tested up to: 5.4
Requires PHP: 7.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: custom-logo, custom-menu, blog, one-column
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

The Code Camp Starter Theme is based on Underscores http://underscores.me/, (C) 2012-2016 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

This theme was developed for Code Camp by The Red Sunflower;
*/


html {
	font-family: 'Nunito', sans-serif;;
}
body {
	/*eliminates margin around entire webpage*/
	margin: 0;
}

/*images should not exceed parent container*/
img {
	max-width: 100%;
}

/*Default Styles*/

#header {
	background-color: white;
	padding: 20px;
	margin: 0;
	text-align: center;
  	box-sizing: border-box;
  	border-bottom: 1px solid lightgray;
}
#header h1 {
	margin: 5px 0;
}
#header p {
	margin: 5px 0;
}
#logo {
	width: 100%;
	text-align: center;
}
#logo img {
	max-width: 80px;
}
#menu {
	width: 100%;
	text-align: center;
}
#menu ul {
	list-style: none;
	padding: 0;
	margin: 5px 0;
}
#menu li {
	text-decoration: none;
	display: inline-block;
	padding: 10px;
	font-size: 16px;
}
#menu a {
	color: black;
	text-decoration: none;
}
#menu a:hover {
	border-bottom: 2px solid black;
}
#content {
	max-width: 1200px;
	margin: 0 auto;
	background-color: white;
	overflow: auto;
  	box-sizing: border-box;
  	padding: 2.5% 10%;
}
#content h1 {
	text-align: center;
}
#footer {
	background-color: white;
	text-align: center;
	color: black;
	padding: 20px;
  	box-sizing: border-box;
  	border-top: 1px solid lightgray;
}
#footer a {
	color: black;
}
#sidebar {
	/*improves compatibility with woocommerce*/
	display: none;
}
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000; /* Above WP toolbar. */
}