* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.donation-container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.header {
    margin-bottom: 20px;
}

.logo {
    width: 100px;
    height: auto;
}

h2 {
    margin: 10px 0;
    font-size: 24px;
    color: #333;
}

.donation-form label {
    display: block;
    margin: 15px 0 5px;
    font-size: 16px;
    color: #555;
}

input[type="number"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 16px;
}

#paypal {
    margin-top: 20px;
}

/* Centering PayPal button on mobile and desktop */
.donation-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 600px) {
    .donation-container {
        width: 90%;
    }

    h2 {
        font-size: 20px;
    }
}
