 				body {
 				    background-color: #eaeffa;
 				    font-family: "Verdana", "Helvetica", Arial, serif, sans-serif;
 				    font-size: 18px;
 				    padding: 20px;
 				}

 				/* Header/Title - NOTE: use "." for class and "#" for id */

 				/***********************************************************************/
 				/* MAIN HEADER TITLE WITH DROP DOWN LIST BOX */

 				/* New Header Bar and Drop Down List */

 				/* for animation in title/header */
 				@keyframes fadeInUp {
 				    to {
 				        opacity: 1;
 				        transform: translateY(0);
 				    }
 				}

 				/* header background */
 				.tm-header-background {
 				    background-image: url("banner3.png");
 				    background-size: cover;
 				    background-position: center;
 				    padding: 40px 0;
 				    z-index: 10;
 				}

 				/* Main "white box" translucent overlay with logo + nav (on top of header background) */
 				.tm-header-box2 {
 				    display: flex;
 				    justify-content: space-between;
 				    align-items: center;
 				    /* 20px indent on both sides */
 				    max-width: calc(100% - 40px);
 				    background: white;
 				    position: relative;
 				    z-index: 100;
 				    /* background: #000099; */
 				    color: white;
 				    /* font-size: xxxx-large; */
 				    font-size: 20px;
 				    font-weight: bold;
 				    font-family: "Verdana-Bold", "Helvetica-Bold", "Verdana", Arial, serif, sans-serif;
 				    padding: 10px 30px;
 				    /* 20px indent on left and right */
 				    margin: 0 20px;
 				    border-radius: 10px;
 				    /* optional: make it responsive */
 				    animation: fadeIn 1.5s ease;
 				    /* 100% width minus 20px * 2 */
 				    width: calc(100% - 40px);
 				    /* includes padding and border in width */
 				    box-sizing: border-box;
 				    display: flex;
 				    /* semi-transparent dark blue #000066 rgba(0, 0, 102, 0.75) */
 				    background-color: rgba(0, 0, 102, 0.75);
 				    /* semi-transparent white */
 				    /* background-color: rgba(255, 255, 255, 0.15); */
 				    padding: 1rem 1.5rem;
 				    /* ⬅️ Make it as wide as the container */
 				    width: 97%;
 				    /* max-width: 1200px; /* Optional max width for layout control */
 				    border-radius: 12px;
 				    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
 				    opacity: 0;
 				    transform: translateY(20px);
 				    animation: fadeInUp 1s ease-out forwards;
 				}

 				/* title on page - ie. TygerMatrix Software */
 				.tm-title-left {
 				    display: flex;
 				    align-items: center;
 				    gap: 15px;
 				}

 				/* tygermatrix icon */
 				.tm-title-left img {
 				    width: 100px;
 				    height: 100px;
 				    border: 5px solid white;
 				    border-radius: 10px;
 				}

 				/* Nav styles for the drop down list */
 				.tm-nav-links {
 				    position: relative;
 				    z-index: 1000;
 				}

 				.nav-list {
 				    list-style: none;
 				    display: flex;
 				    margin: 0;
 				    padding: 0;
 				}

 				.nav-list li {
 				    position: relative;
 				    /* semi-transparent dark blue #000066 rgba(0, 0, 102, 0.75) */
 				    background: #000066;
 				}

 				/* Dropdown menu styles - text */
 				.nav-list a {
 				    color: white;
 				    text-decoration: none;
 				    padding: 8px 12px;
 				    display: block;
 				    /* semi-transparent dark blue #000066 rgba(0, 0, 102, 0.75) */
 				    background: #000066;
 				}

 				/* Dropdown menu styles - "dots" */
 				.dropdown-menu {
 				    display: none;
 				    position: absolute;
 				    top: 100%;
 				    left: 0;
 				    min-width: 160px;
 				    /* semi-transparent dark blue #000066 rgba(0, 0, 102, 0.75) */
 				    background: #000066;
 				    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
 				    /* Ensure this dropdown is above everything */
 				    z-index: 9999;
 				}
 				
 				.dropdown:hover .dropdown-menu {
 				    display: block;
 				}
 				
 				/* for links in drop down menu */
 				.tm-nav-links a {
 				    color: white;
 				    /* optional: removes underline */
 				    text-decoration: none;
 				}

 				.tm-nav-links a:hover {
 				    /* optional hover effect */
 				    text-decoration: underline;
 				    /* lime green */
 				    color: #00ff00;
 				}

 				/***********************************************************************/
 				/* APP DESCRIPTION BOX WITH APP BACKGROUND BEHIND IT
 				
 				/* Description box of app with background behind it */

 				h3 {
 				    position: relative;
 				    /* top right bottom left */
 				    padding: 50px 50px 50px 50px;
 				    color: #193366;
 				    /* dusty blue */
 				    border: 3px solid #5c85d6;
 				    margin-top: 10px;
 				    margin-right: auto;
 				    margin-bottom: 2px;
 				    margin-left: auto;
 				    /*width: 75%;*/
 				    vertical-align: text-top;
 				}

 				/* Explanation:
				h3 contains the text and positions it above the background image.
				The ::before pseudo-element acts as the background layer with an image and 
				opacity set to 0.5, without affecting the h3 text.
				The z-index settings ensure that the text stays above the background. */
 				h3::before {
 				    content: "";
 				    position: absolute;
 				    top: 0;
 				    left: 0;
 				    right: 0;
 				    bottom: 0;
 				    background-image: url("banner3.png");
 				    /* Adjust as needed */
 				    background-size: cover;
 				    background-position: center;
 				    /* Set background opacity */
 				    opacity: 0.1;
 				    /* Places background behind the text */
 				    z-index: -1;
 				}
 				
 				/*************************************************************************************
 				/* h3 specifically for "about" because description too big to fit on some screens */
 				h3#about {
 				    position: relative;
 				    /* top right bottom left */
 				    padding: 50px 50px 300px 50px;
 				    color: #193366;
 				    /* dusty blue */
 				    border: 3px solid #5c85d6;
 				    margin-top: 10px;
 				    margin-right: auto;
 				    margin-bottom: 2px;
 				    margin-left: auto;
 				    /*width: 75%;*/
 				    vertical-align: text-top;
 				}

 				/* Explanation:
				h3 contains the text and positions it above the background image.
				The ::before pseudo-element acts as the background layer with an image and 
				opacity set to 0.5, without affecting the h3 text.
				The z-index settings ensure that the text stays above the background. */
 				h3#about::before {
 				    content: "";
 				    position: absolute;
 				    top: 0;
 				    left: 0;
 				    right: 0;
 				    bottom: 0;
 				    background-image: url("banner3.png");
 				    /* Adjust as needed */
 				    background-size: cover;
 				    background-position: center;
 				    /* Set background opacity */
 				    opacity: 0.1;
 				    /* Places background behind the text */
 				    z-index: -1;
 				}
 				/*************************************************************************************
 				

 				/* Section header is a wrapper for h3 - app description box */
 				.section-header {
 				    position: relative;
 				    padding: 0px 0px;
 				    margin-top: 10px;
 				    z-index: 1;
 				}

 				.section-header h3 {
 				    position: relative;
 				    z-index: 1;
 				    /* font-size: 1.2rem; */
 				    line-height: 1.5;
 				}

 				/* Background behind h3 text */
 				.section-header h3::before {
 				    content: "";
 				    position: absolute;
 				    inset: 0;
 				    background: url("banner3.png") no-repeat center center / cover;
 				    opacity: 0.15;
 				    z-index: -1;
 				}

 				/***********************************************************************/
 				/* OTHER ELEMENTS
 				
 				
                /* Mission/Current Apps */
 				h2 {
 				    color: #5c85d6;
 				    padding: 20px 0 0 0;
 				}

				h4 {
 				    color: #5c85d6;
 				    padding: 20px 0 0 0;
 				}

 				/* any div tag nested inside a div with a class of currentAppsList */
 				div.currentAppsList div {
 				    padding-bottom: 20px;
 				}

				/* for Apps Currently in Development section; alternative so that "float" doesn't mess up alignment; uses flex instead */
				.devApp {
    				display: flex;
    				flex-direction: column;    /* text above icon */
					align-items: flex-start;   /* LEFT justified */
					margin-bottom: 0px;
				}

				.devApp img {
					margin-left: 0px;  /* aligns icon with text padding */
				}

				/* to stop description from being right justified because of plain .iconDesc (I can't change that one because it's used elsewhere) */
				.devApp .iconDesc {
    				margin-left: 0;
    				width: 100%;
    				box-sizing: border-box;
				}

 				/* for any other "icons" used on the page */
 				.icons {
 				    width: 100px;
 				    height: 100px;
 				    float: left;
 				    /* for rounding corners */
 				    border: 5px solid white;
 				    border-radius: 10px;
 				}

				/* for any other "icons" with dark border used on the page */
 				.iconsDark {
 				    width: 100px;
 				    height: 100px;
 				    float: left;
 				    /* for rounding corners */
 				    border: 5px solid #c1d0f0;
 				    border-radius: 10px;
 				}
 				
 				.icons:hover {
 				    /* hot pink */
 					border: 5px solid #ff33cc;
 				}

 				/* Title associated with the icon - ie. Hazel's Recipes */
 				.iconTitle {
 				    /* height of text */
 				    height: 100px;
 				    /* you can use line-height = to height to center vertically; or use padding 20px 0 */
 				    line-height: 100px;
 				    color: blue;
 				    padding-left: 10px;
 				}

 				/* Textual description for the icon - ie. Hazel's Recipes is an app... */
 				.iconDesc {
 				    padding: 10px;
                    /* another dusty blue */
 				    background-color: #c1d0f0;
 				    margin-top: 20px;
 				    /* margin-right: 50%; */
 				    margin-bottom: 10px;
 				    margin-left: auto;
 				}

 				/* italicize list */
 				.ital {
 				    font-weight: normal;
 				    font-style: italic;
 				    margin: 20px;
 				}

 				/* any li tag nested inside a ul with a class of ital */
 				ul.ital li {
 				    padding: 10px;
 				    list-style: circle;
 				}

 				/* use # for id - in this case, refers to id="copyright" in html doc */
 				#copyright {
 				    /* dusty blue */
 				    color: #5c85d6;
 				    font-size: medium;
 				    font-family: "Verdana", "Verdana-Bold", Arial, serif, sans-serif;
 				    /* border: 5px solid green; */
 				    padding: 10px;
 				    padding-top: 50px;
 				}

 				/* change the color for links */
 				a {
 				    color: blue;
 				    /* optional: removes underline */
 				    text-decoration: none;
 				}

 				/* not good to use this because hover seems to stop working
                /* a:visited { color: purple} */

 				a:hover {
                    /* hot pink */
 				    color: #ff33cc;
 				    text-decoration: underline;
 				}

 				