diff --git a/Donation.html b/Donation.html
index e2449e82..22546df8 100644
--- a/Donation.html
+++ b/Donation.html
@@ -5,230 +5,215 @@
-
+ .backimg {
+ background-image: url("assets/images/community-hero-bg.jpeg");
+ background-repeat: no-repeat;
+ background-size: cover;
+ background-position: left;
+ min-height: 100vh;
+ }
+
+ body {
+ font-family: 'Arial', sans-serif;
+ background: #000000;
+ color: black;
+ font-family: Cinzel;
+ line-height: 1.3;
+ }
+
+ header {
+ text-align: center;
+ padding: 4vh 0;
+ background: linear-gradient( #000,#00000000);
+ color: rgb(166, 168, 167);
+ }
-
-
-
+ #email {
+ width: 100%;
+ }
+
+ input, select {
+ padding: 2vh;
+ margin-bottom: 10px;
+ border-radius: 5px;
+ background: rgba(0, 0, 0, 0.499);
+ border: 1px solid #00000000;
+ }
+
+ input:focus, select:focus {
+ background: rgba(255, 255, 255, 0.7);
+ border: 1px solid #cccccc00;
+ outline: none;
+ }
+
+ button {
+ margin-top: 20px;
+ letter-spacing: 1.5px;
+ font-family: Cinzel;
+ padding: 2.5vh 0vw;
+ background: rgba(0, 0, 0, 0.499);
+ margin-left: 50%;
+ translate: -50%;
+ width: 120px;
+ color: rgb(201, 201, 201);
+ border: none;
+ border-radius: 20px;
+ cursor: pointer;
+ font-size: 15px;
+ font-weight: bold;
+ }
+
+ button:hover {
+ background-color: rgba(255, 255, 255, 0.7);
+ color: #000;
+ }
+
+ #thankYouMessage {
+ margin-top: 45px;
+ height: 30vh;
+ text-align: center;
+ }
-
-
+ footer {
+ background-color: rgba(15, 15, 15, 0);
+ padding: 1vh;
+ text-align: center;
+ color: white;
+ position: fixed;
+ width: 100%;
+ bottom: 0;
+ }
+
+
+
+