/* site css */
header, footer
	{
 		background-color: white;
 	  border: solid 1px purple;
 		font-family: "times new roman", serif;
 		font-size: 12px;

 	}
 body
 	{
 		font-family: georgia;
 		font-size: 14px;
    background-color: rgb(231,209,247);
    width: 770px;
    padding: 30px;
  margin: 0 auto;
}

	
 footer
 	{
 		padding: 10px;
 		border-radius: 3px;
 		margin: 20px 0;

 	}

 #main
 {
 	
 	background-color: white;
 	font-size: 16px;
 	font-color: rgb(84,19,110);
 	font-family: helvetica;
 	padding: 20px;
 	margin: 5px 5px 5px 5px;

 }

 #blog
 {
 	font-style: italic;
 	font-size: 16px;
 	font-color: rgb(84,19,110);
 	font-family: helvetica;
  background-color: white;
 }

 header nav
 {
 	font-weight: bold;
 	font-style: italic;
 	font-size: 18px;
 }

 table, th, td {
 	border: 1px solid black;
 }
 th, td {
 	padding: 5px;
 }

.highlight{
	color: yellow;
	background-color: green;
}

.content{
	width: 750px;
	margin: 0 auto;
	background-color: white;
	padding: 10px;
  background-image: url(background2.jpg);
}

#results{
	padding: 2px;
	width: 600px;
}

/* Remove margins and padding from the list, and add a black background color */
ul.topnav {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: rgb(231,209,247);
}

/* Float the list items side by side */
ul.topnav li {float: left;}

/* Style the links inside the list items */
ul.topnav li a {
    display: inline-block;
    color: rgb(194,126,181);
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    transition: 0.3s;
    font-size: 17px;
}

/* Change background color of links on hover */
ul.topnav li a:hover {background-color: #666;}

/* Hide the list item that contains the link that should open and close the topnav on small screens */
ul.topnav li.icon {display: none;}

/* When the screen is less than 680 pixels wide, hide all list items, except for the first one ("Home"). Show the list item that contains the link to open and close the topnav (li.icon) */
@media screen and (max-width:680px) {
  ul.topnav li:not(:first-child) {display: none;}
  ul.topnav li.icon {
    float: left;
    display: inline-block;
  }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens */
@media screen and (max-width:680px) {
  ul.topnav.responsive {position: relative;}
  ul.topnav.responsive li.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  ul.topnav.responsive li {
    float: none;
    display: inline;
  }
  ul.topnav.responsive li a {
    display: block;
    text-align: left;
  }
}
