.title-donation {
   margin-bottom: 5%;
}

/* styles.css */
.main {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
/*     height: 100vh; */
    margin: 0;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.page-container {
    text-align: center;
}

.main-title {
    font-size: 32px;
    margin-bottom: 3rem;
    color: #333;
}

.container {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.block {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    width: 30rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.block:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.title {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.description {
    font-size: 14px;
    margin-bottom: 20px;
    color: #666;
}

.monero {
    background-color: #edeef0;
}

.monero > img{
    background-color: #edeef0;
    width: 4rem;
}

.btn {
    border: none;
    border-radius: 5px;
    color: #ff6600;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    font-size: 16px;
    padding: 10px 20px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #0056b3;
}
