@charset "UTF-8";
/* CSS Document */

*{ /* affects all elements of the whole page */
	/*get rid of default padding and various other elements*/
	padding: 0;
	margin: 0;
	box-sizing: border-box;

}

html{ /* does the whole page */
	/*background-color: blue;*/
	
}

body {
  
}

ul.menu{
	text-align: right;
	background-image: url("../img/horizontal_vines.png");
	background-color: white;
	padding-top: 145px;
	padding-right: 20px;
}

ul.menu li{
	align-content: center;
	display: inline-block;
	border-radius: 5px 5px 0px 0px;
	border-top: 3px solid black;
	border-left: 3px solid black;
	border-right: 3px solid black;
	background-color: rgba(0,174,171,1);
	color: black;
	text-emphasis-color: lightblue;
	padding: 0px 10px;
	font-family: 'Reggae One', cursive;	
}

ul.menu li a{
	
	display: inline-block;
	color: black;
	text-decoration: none;
	padding: 5px 20px;
	border-radius: 5px 5px 0px 0px;
	font-size: 20px;
	transition-duration: 350ms;
	
	/*font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";*/
}

ul.menu li:hover, ul.menu li a.active{
	background-color: lightgray;
	text-align: center;
	
	
}

ul.menu li a:hover{
	
		/*padding: 5px 45px;*/
}

h1.top_of_page{
	
	align-content: center;
	text-align: center;
	font-size: 90px;
	background-color: white;
	font-family: 'Allura', cursive;
	padding-top: 20px;
	
	
}

button.fact{
	
	position: relative;
	top: 10px;
	left: 30%;
	border: 3px solid black;
	border-radius: 5%;
	
	padding: 0px 10px;
	font-size: 20px;
	font-family: 'Sriracha', cursive;
	
}

div.fact{
	
	position: relative;
	top: 60px;
	text-align: center;
	padding-left: 10px;
	padding-right: 10px;
	
	font-size: 20px;
	font-family: 'Sriracha', cursive;
	background-color: rgba(255,255,255,0.51);
}


.indicates_required{
	color: red;
	
}

/* Dropdown Button */
.dropbtn {
  background-color: rgba(0,174,171,1);
  padding: 5px 20px;
  font-size: 20px;
  border: none;
  font-family: 'Reggae One', cursive;	
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

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

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

/* 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: #3e8e41;}

#wrapper{
	width: 80%;
	margin: 0 auto;
}

div.joke{
	float: left;
}




