body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f4f4f4;
}

.container {
    width: 90%;
    max-width: 800px;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    padding: 20px;
}

header {
    background-color: #5c6bc0;
    color: white;
    padding: 2em;
}

header h1 {
    margin-bottom: 0.5em;
}

.construction-image {
    width: 100%;
    margin: 20px 0;
}

.construction-photo {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    animation: fadeIn 1s ease-in-out;
}

.donation-appeal {
    padding: 20px;
}

.donation-appeal h2 {
    margin-bottom: 1em;
}

.progress-bar {
    width: 80%;
    margin: 1em auto;
    height: 20px;
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.progress {
    height: 100%;
    width: 10%;
    background-color: #4caf50;
    transition: width 0.5s ease-in-out;
}

#donate-button {
    background-color: #ff9800;
    color: white;
    padding: 1em 2em;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    animation: pulse 2s infinite;
}

#donate-button:hover {
    background-color: #f57c00;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1em;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.donation-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.donate-option-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.donate-option-button i {
    margin-right: 10px;
    font-size: 1.2em;
}

/* Colors for each payment method */
.donate-option-button.paypal {
    background-color: #009cde; /* PayPal Blue */
}

.donate-option-button.paypal:hover {
    background-color: #007bb5;
}

.donate-option-button.venmo {
    background-color: #00b2ff; /* Venmo Blue */
}

.donate-option-button.venmo:hover {
    background-color: #007ab8;
}

.donate-option-button.cashapp {
    background-color: #00B140; /* CashApp Green */
}

.donate-option-button.cashapp:hover {
    background-color: #007D31;
}

.donate-option-button.zelle {
    background-color: #624ea7; /* Zelle Purple */
}

.donate-option-button.zelle:hover {
    background-color: #3b357e;
}
/* Button*/

.back-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.back-button:hover {
    background-color: #2980b9;
}
