<style type="text/css">
/* Copyright: Ron Mazier */

*,
*::before,
*::after {
  box-sizing: border-box;
}

/**** Body *********************/
	body {
		margin: 0px;
		padding: 0px;
        font-family: Arial, sans-serif;
		line-height: 1.6;
		color: #333;
		background-color: #f9f9f9;
	}
	.important {
		font-weight: bold;
		color: #d9534f;
        }
	.content-container {
/*		display: flex; */
		margin: 0 auto;
		padding: 20px;
        }
	.highlight {
            background: #f0f0f0;
            padding: 10px;
            border-left: 4px solid #007BFF;
        }
	.image-container {
            text-align: center;
            margin-top: 20px;
        }
	img {
            max-width: 100%;
            height: auto;
            border-radius: 5px;
        }
	h1 {
		margin: 0;
		font-size: 2.5em;
		text-align:center;
		width: 100%;
        }

/**** Header *******************/
	header {

    display: 			flex;
    justify-content: 	space-between;
    align-items: 		center;
	flex-wrap:			wrap;



		width: 100%;
		text-align: center;
		position: relative;

		border: 0;
		border-bottom: 5px solid var(--gold);

		background-color: var(--blue);
		color: #fff;
 
		background-image: var(--headerbg);
		background-size: 100% auto; 
		background-position: 0px; 
		background-repeat: no-repeat; 

		border-radius: 0px 0px 16px 16px;
		padding: 48px 24px 64px;
		overflow:hidden;

		} 

	header h1 {
    flex: 1;
		margin: 0;
		font-size: 2.5em;
		text-align:left;
		width: 100%;
        }

	header p {
    flex: 1;
		font-size: 1.2em;
		color: #fff;
		text-align:right;
		max-width: 300px;
		}

	header div {
    flex: 1;
		margin: 0;
		text-align:center;
		width: 100%;
        }
	header img {
		margin: 5px;
		/*	border-radius: 50%; */
		width: 60px;
		/*    width: 90px; */
		position: absolute;
		top: 5px;
		left: 5px;
		}

	@media screen and (max-width:600px) {
/*    header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
*/

}

/**** Footer *******************/
	footer {
		border-top:		2px solid var(--gold);
		border-bottom:	20px solid var(--blue);
		box-sizing: 	border-box;
		display:		block;
		font-style:		italic;
		margin:			0px;
		padding: 		20px;
		text-align:		center;
		width:			100%;
		bottom: 0;
        }

/**** Section *******************/

	section {
		background-color: var(--bg-color);
		border: 1px solid var(--border-color);
		border-radius: 8px;
		box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
		box-sizing: border-box;
		display: flex;
		flex-direction: row;
		margin: 20px auto;
		padding: 20px;
		width: 100%;
		gap: 20px; /* Add spacing between elements */
   }
	section:hover {
		border: 1px solid var(--hover-border-color);
		box-shadow: 1px 1px 2px 2px var(--hover-shadow-color);
		transition: box-shadow 0.3s ease-in-out;
	}



#header {

    display: 			flex;
    justify-content: 	space-between;
    align-items: 		center;
	flex-wrap:			wrap;
	background-image: var(--headerbg);

	background-size: 100% auto; 
	background-position: 0px; 
	background-repeat: no-repeat; 

    border: 0;
    border-bottom: 5px solid var(--gold);
    margin: 0;
    padding: 0;
    width: 100%;
} 
#header #header-title,
#header #top-right {
    flex: 1;
    text-align: center;
}
#header #logo-container {
    flex: 1;
    text-align: left;
}
#header img {
    margin: 2px;
/*	border-radius: 50%; */
    height: 90px;
/*    width: 90px; */
    object-fit: cover;
}
@media screen and (max-width:600px) {
    #header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #header img {
        height: 60px;
        width: 60px;
    }
}

/**************** Navbar *************************/
#navbar {
    display: 			flex;
    flex-wrap: 			wrap;
	gap:12px;margin-top:28px;

	color: 				var(--nav-text-color);
}
#nav {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}
#nav li {
    margin: 0 10px; /* Add spacing between links */
	text-align:center;
}
#nav li a {
    font-size: 16px; /* Smaller font size */
    padding: 5px 10px; /* Reduce padding */
    border-radius: 4px; /* Rounded edges for softer appearance */
    transition: background-color 0.6s, color 0.6s; /* Smooth hover effect */
    color: var(--nav-text-color);
	text-decoration: none;
	text-align:center;
}
#nav li:hover > ul {
    visibility: visible;
    opacity: 1;
}
#nav li ul {
    position: absolute;
    top: 100%;
    left: 0;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    background: rgba(255, 200, 255, 0.5);
    list-style: none;
    padding: 0;
    margin: 0;
    width: 190px;
}
#nav li:hover ul {
    visibility: visible;
    opacity: 1;
}

#nav li a:hover {
    background-color: #EEEEEE; /* Subtle hover effect */
    color: #333333; /* Slightly darker text on hover */
}
@media screen and (max-width: 600px) {
    #nav {

        flex-wrap:wrap; /* Stack items vertically */
    }

    #nav li {
        margin: 5px 0;
    }
}
.fdl {
    list-style: none;
    padding: 0;
    margin: 0;
}
.fdl li {
    position: relative;
    padding-left: 25px; /* Space for the fleur-de-lis */
    margin-bottom: 10px; /* Add spacing between items */
}
.fdl li::before {
    content: '\269C'; /* Unicode for fleur-de-lis */
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px; /* Adjust size */
    color: #008080; /* Customize color */
}

/**** Call to Action **********************/

	.cta {
            text-align: center;
            margin-top: 20px;
            padding: 15px;
            background-color: orange;
            color: white;
            font-size: 18px;
            font-weight: bold;
            border-radius: 5px;
            cursor: pointer;
            text-decoration: none;
			display: block;

			position: relative;
			/*    background-image: url('../Ron5.png'); /* Path to your image */
			background-size: contain; /* Adjust image size */
			background-position: 20px center; /* Center the image */
			background-repeat: no-repeat; /* Prevent tiling */
        }
	.cta::before {
		content: "";
		position: absolute;
		left: 10%; /* Center horizontally */
		top: -40px; /* Move it above the element */
		transform: translateX(-50%); /* Adjust horizontal centering */
		width: 100px; /* Adjust width */
		height: 100px; /* Adjust height */
		background-image: url('../images/Ron5.png');
		background-size: contain;
		background-repeat: no-repeat;
		/*    z-index: -1; /* Keep it behind the text */
	}
	.cta:hover {
            background-color: darkorange;
        }

/**** Download Link **********************/

	.download-link {
            display: inline-block;
            margin-top: 20px;
            padding: 10px 15px;
            background-color: #007BFF;
            color: white;
            text-decoration: none;
            border-radius: 5px;
        }
	.download-link:hover {
            background-color: #0056b3;
        }
    .main {
      flex: 3;
      margin-right: 20px;
    }
    .sidebar {
      flex: 1;
      background: #f4f4f4;
      padding: 20px;
    }
	.method {
            background: #eaeaea;
            padding: 15px;
            margin-bottom: 15px;
            border-left: 5px solid #444;
        }
	.method h2 {
            margin: 0;
        }

/**** Main Image **********************/
	.image-placeholder {
		width: 100%;
		height: 315px;
		background-color: #ccc;
		display: flex;
		align-items: center;
		justify-content: center;
		color: #555;
		font-size: 20px;
		margin-bottom: 20px;
		overflow: hidden;	}
		
	.image-placeholder img {
            width: 100%;
			height: 100%;
			object-fit: cover;
		}

@media (max-width: 768px) {
	.image-placeholder {
		width: 100%;
		height: 210px;
	}
}

/**** Image Square **********************/
	.image-square {
		width: 100%;
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		color: #555;
		font-size: 20px;
		margin-bottom: 20px;
		overflow: hidden;
		margin-right: auto;
		margin-left: auto;
	}	
	.image-square img {
            width: 100%;
			height: 100%;
			object-fit: cover;
            max-width: 100%;
            height: auto;
            border-radius: 8px;
		}

/**** Flex 2 cell **********************/

	.two-cell-flex {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		gap: 20px; 
	}
	.two-cell-text {
		flex: 1;
		min-width: 250px;
	}

/**** Image-small-square **********************/
	.image-small-square {
		width: 144px;
		display: flex;
		align-items: center;
		justify-content: center;
		color: #555;
		font-size: 20px;
		margin-bottom: 20px;
		overflow: hidden;
        margin: 5px;
  flex: 0 0 200px; /* adjust size as needed */
    flex-shrink: 0;
	}
	
	.image-small-square img {
            width: 100%;
			height: auto;
			display: block;
			object-fit: cover;
            max-width: 100%;
            height: auto;
            border-radius: 8px;
		}


/* Responsive Design */
@media (max-width: 768px) {
    .bbox {
        flex-direction: column; /* Stack items vertically */
        padding: 10px;
    }
    .bbox .img, .bbox .cell {
        max-width: 100%; /* Full width on smaller screens */
    }
    .bbox .cell {
        padding: 10px;
    }
}





	form .inputer {text-align:center;} 
		#HomeButton {
		float: right;
		position:absolute;
		top:100;
		left:200;
		}
	form {
		margin: 0px;
		border: 0px;
		padding: 0px;
		}
	video {
		width: 300px;
		}	
/**** subscribeForm feeds subscribe.php *******************/
	#sub-shell {
		background:#fff;
		padding: 10px;
		display: block;
		width: 100%;
		margin-right: auto;
		margin-left: auto;
	}
	#sub-shell-inner { 
		background:#fff;
		clear:left;
		font: 14px;
		width: 100%;
		max-width: 400px;
		padding: 10px;
		font-weight: bold;
		text-decoration: none;
		display: block;
		margin-right: auto;
		margin-left: auto;
	}
	.sub-field-group {
		text-align:right;
	}
	#sub-scroll {
		width: 100%;
		text-align: center;
		line-height: 1.6;
		max-width: 400px;
		margin-right: auto;
		margin-left: auto;	
	}


/**** BUTTONS and HTML ELEMENTS ****/


	a:hover {
		text-decoration: underline;
	}




	input[type="button"], input[type="submit"] {
		box-sizing:		border-box;
		display:		in-line;
		margin-left: 	auto;
		margin-right: 	auto; 
		word-wrap: 		normal;
		white-space: 	normal;
		border:			1px;
		transition: 	width 2s;
		transition-timing-function: linear;
		text-align: 	center;
		background-color: rgba(255, 165, 0, 1);
		box-shadow: 	1px 2px 4px rgba(0,0,0,0.6);
	}
	input[type="button"]:hover,	input[type="submit"]:hover {
		text-decoration: underline;
		box-shadow: 	2px 2px 2px rgba(0,0,0,0.6);
		transform: 		translateY(-1px);
		background-color: 	rgba(255, 165, 0, 0.9);
		}
	.go	{
		width: 			32px;
		height: 		32px;
		border:			1px;
		border-radius: 	16px;
	}
	textarea {
		width: 100%;
		padding: 10px;
		box-sizing: border-box;
		border: 1px solid #ccc;
		border-radius: 5px;
		margin-right:auto;
		margin-left:auto;
		background-color: #f8f8f8;
	}
#gameCanvas {
        border: 2px solid black; /* Add a black border of 2px */
        display: block; /* Ensure proper alignment and spacing */
        margin: 20px auto; /* Center it with margin */
    }
	.button {
            background-color: #0074D9;
            color: white;
            border: none;
            padding: 10px 20px;
            text-transform: uppercase;
            font-size: 16px;
            border-radius: 5px;
            cursor: pointer;
            margin-top: 20px;
        }
	.button:hover {
            background-color: #005fa3;
        }
.button:active {
			box-shadow: 	1px 1px rgba(0,0,0,0.6);
			transform: 		translateY(2px);
	}

/* Table Properties ******************/
	table {
        margin-left: auto;
        margin-right: auto;
		box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
		}
	table tr {
        min-height: 32px;
		}
	th {
		background-color: rgb(60,190,255,0.5);
		text-align: center;
		font-size:	120%;
		font-weight:	bold;
		border-bottom: 1px solid white;
		padding:	10px;
		}
	tr:nth-child(even) {background-color: rgba(60,190,255,0.2)}
	td {
		padding: 5px;
	}




	/* Chrome, Safari, Opera */
	@-webkit-keyframes myslide {
			from {background-position: 	20% 70%;}
			to {background-position: 	25% 70%;}
		} 

	/* Standard syntax */
	@keyframes myslide {
			from {background-position: 	20% 70%;}
			to {background-position: 	25% 70%;}
		}

/* Copyright: Ron Mazier */
</style>