/* spongebob site stylesheet */

@font-face {
  font-family: spongebob;
  src: url("./Some Time Later.otf");
}

body {
	padding-top: 1.0em;
	text-align: center;
	background: #f2ea1940;
}

nav {
	;
}

nav ul {
	list-style-type: none;
}

nav ul li {
	display: inline;
    border: 1px solid #000;
    padding: 0.25em 1.0em;
    box-shadow: 5px 5px #000000aa;
    /* left: -5px; THIS DIDN'T WORK */
    margin: 0;
}

nav ul li:first-child {
	/* border-radius: top-left, top-right, bottom-right, bottom-left */
	border-radius: 5px 0 0 5px;
}

nav ul li:last-child {
	/* border-radius: top-left, top-right, bottom-right, bottom-left */
	border-radius: 0 5px 5px 0;
}

nav ul li {
	font-weight: bold;
	color: #4286f4 ; /* foreground color of text */
	background: #ffffff;
}

nav ul li:hover {
	color: #ffffff; /* foreground color of text */
	background: #4286f4;
}

nav ul li a {
	color: inherit;
	background: inherit;
}

nav ul li a:hover {
	text-decoration: none;
	color: inherit;
	background: inherit;	
}

h1, h2, h3 {
	font-family: spongebob, "Comic Sans MS", Helvetica;
}

h1 {
	font-size: 3.5em;
}

h2 {
	font-size: 2.5em;
}

h3 {;}

img, figure img {
	border: 3px solid #000;
}

section {
	border-bottom: 1px solid rgba(127,127,127,0.5);
	margin: 2.0em 0;
	padding: 1em;
}

#col-container {
	margin: 0 auto;
	position: relative;
}

#paragraph-example {
	text-align: left;
	margin: 2.0em auto;
	min-height: 512px;
	padding-left: 10%;
}

#paragraph-example div {
	display: inline-block;
	float: left;
	/*border: 3px dashed red;*/
	max-width: 28%;
	margin: 0 2.5em 0 0;
}

#paragraph-example h3 {
	text-align: center;
	margin: 0 auto;
}

#paragraph-example div p {
	font-family: Georgia, "Palatino Linotype", serif;
}

#paragraph-example div:last-child {
	clear: right;
}

#facts {
	text-align: left;
	/*background: #ddd;*/
}

#facts h2 {
	text-align: center;
}

#facts ul {
	margin-left: 30%;
	list-style-image: url('squidward_sm.png');
	list-style-position: inside;
}

.valign-li {
	top: -20px;
	position: relative;
}

#episodes {
	border: transparent;
}

#episode-table {
	margin: 0 auto;
/*	border: none;*/
}

#episode-table th {
	background: #ddd;
}

footer {
	margin-top: 1.0em;
	color: #fff;
	background: #000;
	min-height: 8em;
}