@charset "utf-8";
/*CSS for Portfolio Web Site*/

/*This rule will style the main page body*/
body{
	background-color: black;
	color: white;
	font-family: Verdana, Helvetica, Arial, sans-serif;
	font-size:0.9em;
	padding: 0;
	margin: 0;
}
#top{
	overflow: hidden;
	width:100%;
	height:400%;
    position: absolute;
    top: 0;
    left: 0;
}
#navigation ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #00897B;
 border-radius: 15px;
}

#navigation li {
display:inline;
float:left;
position: relative;
left: 560px;
}
/*I learned about the left element. I can use left to make something a certain amount of pixels or a percent away from the left*/
#navigation li a {
  font-family:arial;
  color:#8BC34A;
  text-decoration: none;
  text-align: center;
  padding: 14px 16px;
  display: block;
  border-radius: 15px;
}

#navigation li a:hover {
  background-color: yellow;
  color:green;
}
.dropbtn {
  background-color: #4CAF50;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}
/*I learned how to use the cursor element that lets you change what the mouse looks like when touching certain parts of the page*/
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
	background-color: #f1f1f1
	}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: #3e8e41;
}

#edges {
	background-color:#00897B;
	background-image:url(background.jpg);
	background-repeat:repeat-y;
	color:white;
	margin:25px;
}

p{
	padding-bottom:5px;
}

li{
	list-style-type: circle;
}

/* headlines */
h1, h2, h3 {
	font-family: "Times New Roman";
	font-weight: bold;
	color:white
}

h1 {
	color: white;
	font-size: 1.7em;
}

h2 {
	color: white;
	font-size: 1.2em;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: black;
}

h3 {
	color: #889A9C;
	font-size: 1em;
	color:white;
}
/*hyperlink rules*/
a:link {
	color: #607D8B;
}
a:visited {
	color: #303F9F;
}
a:hover {
	color: #006064;
}
a:active {
	color:#26C6DA;
}
/*I learned all the anchor tag elements. These changes what links look like when: they haven't been clicked, you are in the middle of clicking on it, when your mouse is hovering over it, and when you clicked on it before*/
/* Containers */
#main_content {
	float: right;
	margin: 25px;
	margin-right: 25px;
	list-style-image: url(bullet.jpg);
	list-style-position: inside;
}
#footer {
	clear: both;
	margin: 0;
	font-size: x-small;
	text-align: center;
	color: #88A9C;
	background-color:#00BFA5;
	padding:10px;
}

/*banner*/
#banner{
	text-align: left;
	margin:0px;
	height:171px;
	background-color:#00BFA5;
	background-image: url(banner.jpg);
	background-repeat: no-repeat;
	background-position: top right;
}
#banner h1{
	color:;
	margin:0;
	font-size:70px;
	padding-left: 25px;
	padding-top: 25px;
}

#banner h2{
	color: #000000;
	border:0;
	font-size: 12px;
	font-variant: small-caps;
	font-weight:bold;
	padding-left:25px;
}

/* photos */
.photo {
text-align: center;
float: right;
width: 325px;
margin-right: 15px;
margin-left: 30px;
}

.photo p {
font-size: 11px;
font-weight: bold;
margin-top: 0;
}

.photo img {
border-width: 10px;
border-style: solid;
border-color: #FFFFFF;
}

/* tables */
table {
border-collapse: collapse;
width: 100%;
clear: both;
text-align: left;
}

td,th {
border-style: solid;
border-width: thin;
border-color: #C6C5C5;
padding: 5px;
font-size: 0.8em;
}

th {
color: black;
background-color: white;
background-image: url(PagePhotos/table.gif);
}

caption {
color: white;
font-size: 1.2em;
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: black;
text-align: left;
text-weight: bold;
margin-bottom: 10px;
}
#foxes{
	background-color:white;
}
#button-back{
	position:relative;
	align-self:center;
	background:black;
}