body {
    font-family: Arial, sans-serif;
    background-color: #d3d5ac;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100vh;
    color: #333; /* Darker text color for better readability */
}

.container {
    text-align: center;
    width: 100%;
    max-width: 600px;
    margin-top: 20px; /* Adjust this value to shift the content toward the top */
}

h1 {
    color: #9ea467;
    margin-bottom: 20px;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.pickle-jar {
    width: 200px;
    margin-bottom: 20px;
}

.text {
    margin-bottom: 20px;
}

.kriston {
    width: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.slogan {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
}

.donate-section-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    width: 100%;
    max-width: 400px;
}

.donate-section {
    background-color: #FFC0CB; /* Breast cancer pink */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.donate-section h2 {
    color: #9ea467;
    margin-bottom: 10px;
}

.donate-section p {
    margin-bottom: 20px;
}

.donate-button {
    background-color: #9ea467;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.donate-button:hover {
    background-color: #8c9c5e;
}