
/* ===============================
   Global & Body Styles
   =============================== */
 body {
    background-color: #ffffff;
	background: url('_images/CDFW_backgrad.png') repeat-x center top;
	color: #000000;
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 2% 0;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #121212;
		background: url('_images/CDFW_backgrad.png') repeat-x center top;
		color: #ffffff;
    }

    a {
        color: #80cbc4;
    }
}

.logo img {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}

/* ======================
   LAYOUT AND TEXT
====================== */
.logo img {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
}

h1 {
  font-size: 2em;
  margin: 10px 0;
}

h2 {
  font-size: 1.5em;
  margin: 10px 0;
}

p {
  font-size: 1em;
  margin: 10px 0;
}

footer {
  margin-top: 30px;
  font-size: 0.8em;
}

/* Spinner */
.spinner {
	border: 6px solid #f3f3f3; /* Light grey */
	border-top: 6px solid #0078D7; /* Primary blue */
	border-radius: 50%;
	width: 40px;
	height: 40px;
	animation: spin 1.5s linear infinite;
	margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

