/*DOCUMENT STYLES*/

* { /*selects all elements*/
	box-sizing: border-box;/*tells computer to include padding and border in all element sizing*/
}

html { /*selects the entire html document*/
	background: #73E0F3;/*sets the background of the ENTIRE document to teal*/
	margin: auto; /*centers the site on the page*/
	width: 960px; /*sets the width to 960 pixels*/
}

body {
	background-color: white;/*sets the background of the body of the page to white*/
}

h1, h2, h4{ /*selects all h1's*/
	font-family: "Brush Script MT", cursive;/*makes them cursive in a special font*/
	font-size: 3em;/*makes the heading 3x normal text*/
	text-align: center;/*aligns the text in the center of the page*/
	margin: 1%; /*sets the margin to 1%*/
}

h2 {
	font-size: 2em;
	
}

h4 {
	font-size: 1.5em;
}

a { /*selects all links in the page*/
		color: inherit; /*removes the default blue type of links and replaces with color of the document*/
		text-decoration: none; /*removes the default underline from all links*/
	}

a:hover { /*selects any link being hovered over*/
	color: blue; /*turns the text blue*/
}

img { /*selects all images*/
	max-width: 100%;/*ensures screen enlargement will never overenlarge photos beyond 100%*/
}

/*NAVIGATION STYLES*/

nav { /*selects the ENTIRE NAV SECTION*/
	background-color: #333;/*sets background of ENTIRE NAV SECTION to dark grey*/
	color: white; /*sets the font to white*/
	font-size: 1.1em; /*sets font size to .1 more than normal text*/
	font-variant: small-caps;
}

nav a {/*selects all links in the nav section*/
	padding: 14px; /*adds 14px padding around all sides of nav text*/
	
}
/* Dropdown Button */
.dropbtn {
  background-color: inherit; /*inherits the background color from nav section styles*/
  color: inherit; /*inherits the font color from the nav section styles*/
  padding: 14px; /*adds 14px padding around all sides of nav text*/
  font-size: inherit; /*inherits the font size from the nav section styles*/
  border: none; /*removes the default border associated with buttons*/
  font-family: serif; /*sets the font to the default serif font*/
  font-variant: small-caps;
}

/* The container <div> (dropdown class) - needed to position the dropdown content */
.dropdown {
  position: relative; /*places the dropdown content relative to the dropdown header, directly below*/
  display: inline-block;/*???required to keep nav links on one line*/
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none; /*defaults dropdown display to invisible*/
  position: absolute;
  background-color: #333;
  min-width: 150%;/*sets the width of the dropdown menu to 150% of the header button*/
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  padding: 12px 16px;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ABABAB;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
	background-color: #73E0F3; /*sets the background to teal*/
	color: black; /*sets the font to black*/
	}

nav a:hover { /*selects all links in the nav section, when they are hovered over they have the following characteristics*/
	background-color:#73E0F3; /*teal background color*/
	color: black; /*black text*/
}

/*FOOTER STYLES*/

footer p{
	padding: 7%;
}

footer {
	background-color: #333; /*sets the background of the footer to match nav*/
	text-align: center; /*centers the text in the footer*/
	font-variant: small-caps; /*writes the footer in small caps*/
	bottom: 0; /*defines the footer position as the bottom of the screen*/
	color: black; /*sets the font color in the footer to white*/
	background-image: url("Images/SeaShells.jpg"); 
	float: right;
	width: 100%;
	}
	
footer > a { /*selects all the links IN THE FOOTER*/
	color: inherit; /*sets the color of links in the footer to the same color as surrounding text*/
	}

.catprofiles { /*selects catprofiles class objects in mascots page*/
	width: 20%; /*sets width to 20% of the container*/
	float: left; /*floats the mascot profile images on mascots page to the left*/
	margin-right: 2%;
}

.gallery_images {
	padding: 10px;
}

/*PARAGRAPH STYLES*/
.mascots { /*selects mascot class objects in mascots page*/
	padding: 0 5% 2.5% 5%; /*adds padding around the sides of the mascot intro paragraphs on mascots page*/
}

/*BANNER STYLES*/
header h1{ /*selects all h1s*/
	font-family: "Brush Script MT", cursive; /*sets font type to cursive*/
	font-size: 4em;	/*sets the header font to 4x regular size*/
	text-align: left; /*align text to the left*/
	padding: 3%; /*sets interior padding to 3% of total measurement (width or length)*/
}

header {/*slects header*/
	background-image: url("Images/banner option1.jpg"); /*sets background to the image in ""*/
	height:100%;/*fills 100% of the vertical header section*/
	background-size: cover;
}


/*MASCOT TABLE STYLES*/
#kittenGallery {/*selects the table*/
	margin: 0 auto;/*centers it on the page*/
}

#kittenGallery th, #kittenGallery td { /*selects all the cells in the table*/
	width: 25%; /*sets column width to 25% of table width*/
	padding: 15px; /*sets interior cell padding to 15px on all sides*/
}

#kittenGallery img { /*selects the images in the table and makes them all the same size, 200 by 200px*/
    position: relative;
    float: left;
    width:  200px; /*sets width to 200px*/
    height: 200px; /*sets height to 200px*/
    background-size:cover;
}
/*CONTACT US STYLES*/

.formgroup {
	margin: 5% 10%;
}

/*MENU STYLES*/
.column {
	float: left; /*floats each column left*/
	width: 40%; /*sets column width to 40%*/
	margin: 0 5% 5% 5%; /*sets left and right margins to 5%*/
}

.apps dd, .apps dt {
	width:40%;
	margin: auto;
}

.apps dd {
	margin-bottom: 2%;
}

.apps h2 {
	margin-bottom: 2%;
}

dt {
	font-weight: bold;
	font-style: italic;
	margin-top: 2%;
	font-size: 1.25em;
	text-align: left;
}

/*HOME STYLES*/

.home_image img {
	width: 50%;
	float: right;
}

.home_heading {
	margin: 13% auto;
	float:left;
	text-align: center;
	width: 50%;
}

.four_columns {
	width: 21%;
	margin: 2%;
	float: left;
}

.home h1 {
	width: 45%;
	float: right;
	margin-top: 15%;
}

/*FAQ ACCORDIAN STYLES*/

.accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
  border-radius: 24px;
}

.active, .accordion:hover {
  background-color: #ccc;
}

.accordion:after {
  content: '\002B';
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2212";
}

.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

/*SPECIALS STYLES*/

.specials_image {
	width: 30%;
}

.specials_name {
	width: 20%;
	font-weight: bold;
	font-style: italic;
	text-align: center;
	vertical-align: center;
}

.specials_description{
	text-align: center;
	padding: 0 3%;
}

.specials table {
	border: 1px solid black;
	margin: auto;
	width: 90%;
}

table, td {
	vertical-align: middle;
}

.annoyingCanvas {
	float: right;
}

#wrapper {
	margin: 0 0 0 20%;
}