@charset "UTF-8";
/* styles_lu_v1_blue.css – cleaned for HTML5 & W3C validation */

/* ----------------------------------------
   Reset & Base Typography
---------------------------------------- */
/*  
Author: Sean Kelley
Date: July 24, 2025
File Info: Home Page - Life's Uncertain | Since Always & Forever
Color Scheme:
  #EEEEEE - off white - body bg
  #252B3D - dark blue - top and bottom bar, links, image borders
  #222222 - black - headings, side menu titles, paragraph text
  #FFD800 - golden yellow - accent color, hovering
*/
/* ----------------------------------------
   Reset & Base Typography
---------------------------------------- */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html {
	font-size: 100%;
	line-height: 1.6;
}
body {
	background-color: #CCCCCC;
	color: #333333;
	margin: 0;
	padding: 0;
}
/* ----------------------------------------
   Headings & paragraphs
---------------------------------------- */
/* make all headings a bit smaller for a tighter flow */
h1 {
	font-size: 1.8em;
	margin: 0.5em 15px;
}
h2 {
	font-size: 1.4em;
	margin: 0.5em 15px;
}
h3 {
	font-size: 1.2em;
	margin: 0.5em 15px;
}
h3 {
	font-size: 1em;
	margin: 0.5em 15px;
}
p {
	margin: 0.5em 15px;
}
/* indent unordered lists */
ul {
	list-style-position: inside;
	padding-left: 1.5em;
	margin: 0.5em 15px;
}
/* Images inside links */
a img {
	border: none;
}
/* Default link style */
a {
	color: #333333;
	text-decoration: underline;
	padding: 0 2px;
}
a:hover, a:focus {
	text-decoration: none;
}
/* ----------------------------------------
   Container & Layout
---------------------------------------- */
#container {
	width: 960px;
	margin: 0 auto;
	background-color: #EEEEEE;
	border-left: 10px solid #252B3D;
	border-right: 10px solid #252B3D;
}
/* Main two-column layout */
#layout {
	display: flex;
	flex-wrap: wrap;
}
#right {
	flex: 0 0 32%;
	padding: 10px 15px;
}
#main_content {
	flex: 1;
	padding: 10px 15px;
}
/* ----------------------------------------
   Header & Stripes
---------------------------------------- */
/* Header: two-column layout */
header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #252B3D;
	padding: 10px 15px;
}
/* Left side: title & tagline */
.header-left h1 {
	font-family: Times, serif;
	font-size: 1.6em;       /* adjust to taste */
	color: #EEEEEE;
	margin: 0;
}
.header-left h1 a {
	color: inherit;
	text-decoration: none;
}
#tagline {
	font-family: 'Alex Brush', cursive;
	font-size: 1.2em;       /* adjust to taste */
	color: #FFD800;
	font-weight: lighter;
}
.header-left h3 {
	font-family: sans-serif;
	font-weight: lighter;
	font-size: 1.7em;       /* adjust to taste */
	color: #EEEEEE;
	margin-left: 60px;
}
/* Right side: inline lists */
.header-right {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}
/* Contact links */
.contact-links, .accessibility-controls {
	list-style: none;
	display: flex;
	margin: 0;
	padding: 0;
}
.contact-links li, .accessibility-controls li {
	margin-left: 1em;
}
/* style the anchors */
.contact-links a {
	color: #EEEEEE;
	text-decoration: none;
	font-size: 0.9em;
}
.contact-links a:hover, .contact-links a:focus {
	text-decoration: underline;
}
/* style the buttons */
.accessibility-controls button {
	background: none;
	border: none;
	color: #EEEEEE;
	font-size: 1em;
	cursor: pointer;
	padding: 0;
}
.accessibility-controls button:hover, .accessibility-controls button:focus {
	text-decoration: underline;
}

/* ensure the two-column never wrap too early */
@media (max-width: 600px) {
header {
	flex-direction: column;
	align-items: flex-start;
}
.header-right {
	margin-top: 0.5em;
	align-self: stretch;
	justify-content: space-between;
}
.contact-links,  .accessibility-controls {
	flex-wrap: wrap;
	gap: 0.5em;
}
}
/* decorative stripes */
.stripes {
	display: flex;
}
.stripes__bar {
	flex: 1;
	height: 5px;
	background-color: #FFD800;
}
.stripes-top .stripes__bar:nth-child(even), .stripes-bottom .stripes__bar:nth-child(odd) {
	background-color: #252B3D;
}
/* ----------------------------------------
   Navigation
---------------------------------------- */
/* top nav */
#top_nav {
	border-bottom: 2px dotted #CCCCCC;
	font-family: Verdana, Geneva, sans-serif;
	text-align: center;
	padding: 0.5em 0;
	clear: both;
}
#top_nav ul {
	list-style: none;
}
#top_nav li {
	display: inline;
	margin: 0 10px;
}
#top_nav a {
	color: #333333;
	text-decoration: none;
	padding: 0 5px;
}
#top_nav a:hover, #top_nav a:focus {
	text-decoration: underline;
}
/* bottom nav */
#bottom_nav {
	border-top: 2px dotted #CCCCCC;
	font-family: Verdana, Geneva, sans-serif;
	text-align: center;
	padding: 0.5em 0;
	clear: both;
}
#bottom_nav ul {
	list-style: none;
}
#bottom_nav li {
	display: inline;
	margin: 0 10px;
}
#bottom_nav a {
	color: #333333;
	text-decoration: none;
	padding: 0 5px;
}
#bottom_nav a:hover, #bottom_nav a:focus {
	text-decoration: underline;
}
/* ----------------------------------------
   Footer
---------------------------------------- */
footer {
	background-color: #252B3D;
	color: #EEEEEE;
	text-align: center;
	padding: 15px;
}
footer a {
	color: #FFD800;
	text-decoration: none;
}
footer a:hover, footer a:focus {
	text-decoration: underline;
}
/* ----------------------------------------
   "Back to Top" Button
---------------------------------------- */
#myBtn {
	display: none;
	position: fixed;
	bottom: 40px;
	right: 40px;
	font-size: 18px;
	border: none;
	outline: none;
	background-color: #252B3D;
	color: #EEEEEE;
	cursor: pointer;
	padding: 15px;
	border-radius: 4px;
}
#myBtn:hover, #myBtn:focus {
	background-color: #666666;
	color: #F1F1F1;
}

/* ----------------------------------------
   Responsive Adjustments
---------------------------------------- */
@media (max-width: 1150px) {
#container {
	width: 100%;
	border: none;
}
#layout {
	flex-direction: column;
}
#main_content,  #right {
	flex: 1 0 auto;
	width: auto;
	margin: 0;
}
#top_nav,  #bottom_nav {
	font-size: 90%;
}
}
 @media (max-width: 400px) {
#top_nav li,  #bottom_nav li {
	display: block;
	margin: 0.5em 0;
}
}
/* ----------------------------------------
   Site Adjustments to tags, class, id
---------------------------------------- */
blockquote {
	border: none;
	border-radius: 20px;
	text-align: center;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 18px;
	height: auto;
	width: 600px;
	max-width: 90vw;
	padding: 0 40px;
	position: relative;
	overflow: hidden;
}
.center {
	text-align: center;
}
        
        /* Responsive design */
        @media (max-width: 768px) {
blockquote {
	width: 95%;
	padding: 30px 20px;
	font-size: 16px;
}
}
#ddi {
	font-family: Impact, Verdana, Geneva, sans-serif;
	font-size: 8em;
	text-align: center;
	text-transform: uppercase;
	font-weight: bolder;
	line-height: 1em;
}
.center {
	text-align: center;
}
.bold {
	font-weight: bold;
}
.examples {
	color: #002666;
	font-size: 90%;
}
.bringback {
	margin-top: 80px;
	font-size: 90%;
}
.attention {
	font-size: 1.1em;
	color: #FFD800;
	background-color: #252B3D;
	font-family: Tahoma, Geneva, sans-serif;
	border: #FFD800 solid 4px;
	font-weight: bolder;
	text-transform: uppercase;
	padding: 10px;
	margin: 20px;
}
