 				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 */
 				.heartart-header-background {
 				    background-image: url("heartArtStickersBanner.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) */
 				.heartart-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;
 				    /* semi-transparent dark red/wine #7f0630 rgba(127, 6, 48, 0.5) */
 				    background-color: rgba(224, 29, 143, 0.4);
					/* background-color: rgba(9, 149, 209, 0.5); 
					/* background-color: rgba(127, 6, 48, 0.5); */
 				    /* semi-transparent dark blue */
 				    /* background-color: rgba(0, 0, 102, 0.35); */
 				    /* semi-transparent dark blue */
 				    /* 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. Heart Art Stickers */
 				.heartart-title-left {
 				    display: flex;
 				    align-items: center;
 				    gap: 15px;
 				}
 				
				/* tygermatrix icon */
 				.heartart-title-left img {
 				    width: 100px;
 				    height: 100px;
 				    border: 5px solid white;
 				    border-radius: 10px;
 				}

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

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

 				.nav-list li {
 				    position: relative;
 				    /* dark blue */
 				    /* background: #000066; */
 				    /* semi-transparent dark red/wine #7f0630 rgba(127, 6, 48, 0.5) */
					background: #7f0630; 
 				}

                /* Dropdown menu styles - text */
 				.nav-list a {
 				    color: white;
 				    text-decoration: none;
 				    padding: 8px 12px;
 				    display: block;
 				    /* dark blue */
 				    /* background: #000066;  */
 				    /* semi-transparent dark red/wine #7f0630 rgba(127, 6, 48, 0.5) */
 				    background: #e31d8a;
 				}

 				/* Dropdown menu styles - "dots" */
 				.dropdown-menu {
 				    display: none;
 				    position: absolute;
 				    top: 100%;
 				    left: 0;
 				    min-width: 160px;
 				    /* dark blue */
 				    /* background: #000066; */
 				    /* semi-transparent dark red/wine #7f0630 rgba(127, 6, 48, 0.5) */
 				    background: #e31d8a;
 				    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 */
 				.heartart-nav-links a {
 				    color: white;
 				    /* optional: removes underline */
 				    text-decoration: none;
 				}

 				.heartart-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;
 				    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("heartArtStickersBanner.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: 40px;
 				    margin-bottom: 25px;
 				    z-index: 1;
 				}

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

 				/* Background behind h3 text */
 				.section-header h3::before {
 				    content: "";
 				    position: absolute;
 				    inset: 0;
 				    /* background: url("sushigoBanner4.png") no-repeat ; */
 				    background: url("heartArtStickersBanner.png") no-repeat center center / cover;
 				    opacity: 0.15;
 				    z-index: -1;
 				}
 				
 				/***********************************************************************/
 				/* HORIZONTAL SCROLLING OF APP SCREENSHOTS
 				
 				/* if you want a horizontally scrolling container of pictures */
 				.scroll-container {
 				    /* Arrange items in a row */
 				    display: flex;
 				    /* Enable horizontal scrolling */
 				    overflow-x: auto;
 				    /* Space between images */
 				    gap: 10px;
 				    /* Padding inside the scroll container */
 				    padding: 10px;
 				    /* Prevent wrapping */
 				    white-space: nowrap;
 				    /* Optional: border for visibility */
 				    border: 2px solid #ccc;
 				}

 				.scroll-container img {
 				    /* Set a consistent width for images */
 				    width: 250px;
 				    /* Maintain aspect ratio */
 				    height: auto;
 				    /* Optional: rounded corners */
 				    border-radius: 8px;
 				    /* Optional: shadow for aesthetics */
 				    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
 				}

 				/* words "Scroll right -> ... now on bottom" */
 				#scrollHeader {
                    /* dusty blue */
 				    color: #5c85d6; 
 				    /* margin: TOP RIGHT BOTTOM LEFT; */
 				    margin: 10px 0 5px 15px;
 				    font-style: italic;
 				}
 				
 				/***********************************************************************/
 				/* OTHER ELEMENTS

 				/* for links to privacy policy, tos, and back to home page */
 				.noBorder {
 				    border: none;
 				    padding: 10px;
 				    margin-right: auto;
 				    margin-left: 25px;
 				    /*width: 75%;*/
 				    vertical-align: text-top;
 				    font-weight: normal;
 				    font-size: 15px;
 				}

 				/* any h4 tag nested inside a div with a class of noBorder */
 				div.noBorder h4 {
 				    padding: 10px;
 				}

 				/* 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;
 				}

 				/* 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;
 				}

 				#backbutton {
 				    position: relative;
 				    float: right;
 				    bottom: 10px;
 				    right: 10px;
 				}
 				
 				/* change the color for other links on the page */
 				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;
 				}
