body {
	max-width: 90%;
	margin: 0 auto;
	color: black;
	font-family: Tahome, Roboto, Arial, Helvetica, sans-serif;
	/*font-family: Trebuchet MS, Helvetica, sans-serif;*/
	/*font-family: Verdana, Geneva, sans-serif;*/
	/*font-family: Times New Roman, Times, serif;*/
	/*font-family: Tahoma, Geneva, sans-serif;*/
	font-size: 1.25em;
}

h1 {
	font-size: 2em;
}

h2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Set the width to 100% */
    height: 2px; /* Adjust the thickness as needed */
    background-color: #aaa; /* Change the color as desired */
}
h2 {
	position: relative;
	font-size: 1.5em;
}

h3 {
	font-size: 1.25em;
}

.content-box {
    border: 2px solid #a55; /* Add a solid border */
    border-radius: 8px; /* Add rounded corners */
    margin-bottom: 15px; /* Add margin to separate each box */
    margin-left: 10px; /* Add margin */
    margin-right: 10px; /* Add margin */
    padding: 10px; /* Add padding inside the box */
}

.content-box h3 {
    margin-top: 0; /* Remove default margin from h3 */
    margin-bottom: 10px; /* Add margin between h3 and content */
}

p {
	font-size: 1em;
	/*text-align: left;*/
	/*margin-left: 20px;*/
}

li {
	color: maroon;
}

a {
	text-decoration: none;
}

.title-image {
	background-image: url("TPPFlag_1000x288_centerfade.png");
	background-color: #000000;
	height: 200px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}

.title-text {
	font-size: 1.5em;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #000000;
}

.tab { margin-left: 40px; }

.christmas-heading {
    position: relative;
    display: inline-block;
}

/* Snowflake animation */
@keyframes snowflake-fall {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100vh);
    }
}

.christmas-heading::after {
    content: '\2744'; /* Unicode for a snowflake character */
    position: absolute;
    top: -10px; /* Adjust vertical positioning */
    left: 5px; /* Adjust horizontal positioning */
    color: #aaa; /* Snowflake color */
    font-size: 24px; /* Snowflake size */
    animation: snowflake-fall 5s linear infinite; /* Animation properties */
}
