
body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	background-color: #f0f2f5;
	color: #333;
}

header {
	background-color: #007bff;
	padding: 20px 0;
	text-align: center;
	color: #fff;
}

main {
	padding: 20px;
	text-align: center;
}

form {
	background-color: #fff;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	max-width: 600px;
	margin: 0 auto;
}

button,
input[type="submit"],
input[type="button"] {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
    background-color: #0056b3;
} 

footer {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	background-color: #f8f9fa; 
	padding: 20px 0; 
	text-align: center;
}

footer a {
	margin: 0 10px; 
	color: #666; 
	text-decoration: none; 
	font-size: 14px; 
}

footer a:hover {
	text-decoration: underline; 
}


.center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh; 
}


.donate-image {
    max-width: 100%; 
    max-height: 80vh; 
    margin: auto; 
}


#centerdiv p {
    text-align: center; 
}
