body {
  background-color: green;
}
#content{
  background-color: #f5f4f2;
  box-shadow:  0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#header {
 background: linear-gradient(to left, #68ff4f, #97ff86);
 border: 2px dashed #05137a;
}

#title {
  width: 150px;
  height: 120px;
  margin: auto;
  background-image: url(https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSZFpkw8E0fjhm54i2bNevVvHGKXiah3OmncQ&usqp=CAU), url(https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRykNIs3Da0o7v0DPvlrjWnOoZIBC5v6i86mQ&usqp=CAU);
  background-size: 60px 50px, 150px 70px;
  background-repeat: no-repeat;
 	background-position: left top, bottom;
  background-color: white;
  color: #000896;  
  text-shadow: 2px 4px 10px #5e66ff;
  padding: 1px;
}

.tab1 {
 text-align: center;
 margin-bottom: -25px
  
}

.tab2 {
text-align: left;
}

/* Nav Bar CSS */

#tab-bar {
  background-color: #000796;
  align-self: center;
  text-align: center;
  padding: 15px;
}

#tab-bar a, button {
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: underline;
  font-size: 17px;  
  
}

#tab-bar a:hover{
  background-color: #95dd82;
  color: black;
}

#tab-bar 
a.active
 {
  background-color: green;
  color: white;
}

h1 {
  text-align:center;
  font-family: 'Rye', cursive;
}

p {
  text-align:center;
}

#flex{
   display: flex;
}

aside {
  padding-right: .5rem;
  margin-right: .5rem;
  padding-left: .5rem;
  margin-left: .5rem;
  font-style: italic;
  color: #29627e;
  float:right;
  height:100%;
}

ul {
  list-style-type: none;
}

.underline {
  text-decoration:underline;
}

#book {
  color: brown;
}

table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
  	margin-left: auto;
 	  margin-right: auto;
  	width:50%;
  	color: hotpink;
  	margin-top:130px;
}

td,
th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
}

tr:nth-child(even) {
    background-color: #169003;
  color: blue;
}

tr:nth-child(odd) {
    background-color: #000996;
}

.dropdown {
  position:relative;
  display: inline-block;
}

.dropdown .dropbtn {
  font-size: 16px;  
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
}

.dropdown-content {
  display: none;
  position: absolute;
	background-color: #000796;
  min-width: 152px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 14px 16px;
  text-decoration: none;
  display: block;
}

.dropdown:hover{
  background-color: #95dd82;
  color: black;
}

.dropdown:hover .dropdown-content {
  display: block;
}