body {
    font-family: Arial, sans-serif;
    background-color: #9da466;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #4caf50;
    margin-bottom: 20px;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.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;
}

.donate-section {
    margin-top: 20px;
}

.donate-section h2 {
    color: #4caf50;
    margin-bottom: 10px;
}

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

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

.donate-button:hover {
    background-color: #45a049;
}