@charset "utf-8";

/* general layout */
* {
    margin: 0;
}
html {
    background-color: rgba(153,255,204,1.00);
    background-image: url(images/background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
    font-size: 10px;
	height:100%;
}
body {
    width: 80%;
    max-width: 1000px;
    height: 100%;
    margin: 0px auto;
}


/* type */
a {
    text-decoration: none;
}
a:link {
    color: blue;
}
a:visited {
    color: purple;
}
a:active {
    text-decoration: underline;
    color: red;
}
a:hover {
    color: red;
    border-top: thin solid blue;
    border-bottom: thin solid blue;
}
.francie {
    color: #660000;
    background-color: #99ffcc;
}


/* header layout */
header {
    height: 75px;
    background-color: rgba(255,255,255,0.80);
    font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, sans-serif;
    font-size: 4.5rem;
    text-align: center;
    font-weight: bold;
    color: rgba(61,106,83,1.00);
}
#page_logo {
    float: left;
}


/* nav layout */
nav {
    font-size: 1.7rem;
    line-height: 3.5rem;
    font-weight: bold;
}
nav ul {
    padding: 0;
    list-style: none;
    display: flex;
}
nav ul li {
    display: inline;
    text-align: center;
    flex: 1;
}
nav a {
    display: block;
    color: blue;
    background-color: rgba(153,255,204,1.00);
    text-decoration: none;
}
nav a:hover {
    background-color: rgba(255,255,255,0.90);
    color: rgba(61,106,83,1.00);
    border: 0;
    text-decoration: none;
}
nav a:visited {
    color: blue;
}
nav a:active {
    background-color: white;
}


/* main layout */
main {
    padding: 5px;
    min-height: 100%;
    background-color: rgba(255,255,255,0.90);
    font-size: 1.7rem;
}
tr {
    vertical-align: top;
}
tr:nth-child(even) {
    background-color: rgba(153,255,204,0.30);
}


/* footer layout */
footer {
    background-color: rgba(153,255,204,1.00);
    font-size: 1.4rem;
    text-align: center;
    clear: both;
    position: fixed;
	bottom:0;
    width: 80%;
    max-width: 1000px;
}
footer li {
    list-style: none;
    text-align: center;
    padding: 0 5px;
    display: inline;
    font-size: 2rem;
}
#about_francie_image {
    float: right;
    width: 400px;
    max-width: 50%;
}
	/* Mobile Device Layout */
@media screen and (max-width: 950px) {
	body {
	width: 100%;
	margin: 0;
	}
	header {
		font-size: 4rem;
		height: 12rem;
	}
	nav ul {
		display: inline-block;
		width: 100%;
		margin: 0px;
	}
	nav li {
    	width: 100%;
    	display: inline-block;
    	font-size: 2.5rem;
	}
	main {
		font-size: 2rem;
	}
	footer {
		font-size: 1.7rem;
		width: 100%;
    	background-color: rgba(153,255,204,1.00);
	}
}