/* =========================================
   MINEFALLS THEME LAYOUT
   Page-specific styling for the Minefalls site
   ========================================= */
   
/*
1. Birthstone Color Palette (All 12 Months)
Month       Birthstone  Hex Color   Notes
January     Garnet      #8B0000     Deep Red
February    Amethyst    #9966CC     Royal Purple
March       Aquamarine  #7FFFD4     Light Teal
April       Diamond     #E8E8E8     Soft gray/white
May         Emerald     #046307     Rich Green
June        Pearl       #F8F4E3     Ivory
July        Ruby        #CC0000     Vivid Red
August      Peridot     #B4D335     Yellow-green
September   Sapphire    #0F52BA     Deep Blue
October     Opal        #F3DDEB     Iridescent Pastel
November    Topaz       #FFC87C     Golden
December    Turquoise   #40E0D0     Bright Blue
*/

body { 	 
		 max-width:1500px; 
         /* margin:auto !important; */ 
           margin: 0 auto;
        /* width:1024px;  */
        /* color:#68AAE4; */  				    /* January   - Ice Blue       */
	 	/* color:#FF0000; */  					/* February  - Red            */
	 	/* color:#7fff00; */  					/* March     - Chartreuse     */
	 	   color:#FF0066;        				/* April     - Rose           */
	 	/* color:#CC66CC; */  					/* May       - Lavender       */
	 	/* color:#00FFFF; */   					/* June      - Light Turquoise */
	 	/* color:#FFFF00; */  		        	/* July      - Yellow          */
	 	/* color:#FF339C; */  			        /* August    - Pink           */
	 	/* color:#FFCC66; */   				    /* September - Beige         */
	 	/* color:#FF8040; */   				    /* October   - Light Orange   */
	 	/* color:#D4A017; */  					/* November  - Gold           */
	 	/* color:#00C000; */           			/* December  - Green          */

		/* Set a background color that will be displayed
     		while the background image is loading */
		background-color: black;
    	        
    	font-family: "Monotype Corsiva", serif;
     }
     
body,
#column-content,
table,
td {
    background-color:black;
}
     
a:link { color:#FF0066 } 
a:visited { color:#FF0066 } 
a:active { color:#FF0066 }

.footer {
        position: fixed;
        bottom: 0;                  /* Anchor to the bottom of the viewport */
        left: 0;                    /* Anchor to the left side of the viewport */
        width: 100%;                /* Make the footer span the full width */
        background-color: #333;     /* Add a background color for visual clarity */
        color: white;               /* Set the text color to white */
        text-align: center;         /* Center the text */
        padding: 10px 0;            /* Add some padding */
        z-index: 1000;              /* Ensure the footer is on top of the other content */  
}