/* Main content area */

.main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.inner-main {
    width: 100%;
    padding: 60px 0px 60px 0px;
}

.qr-code-img {
    height: 225px;
    width: 225px;
}

.h1-donation-title-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.h1-donation-title {
    font-size: 1.5rem;
    font-weight: 600;
}

.btc-xmr-swappper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 15px 15px 0px 15px;
}

.btc-xmr-div {
    display: flex;
    gap: 0;
}

.clicked-button {
    color: #fff;
    background-color: #000;
    border: none;
}

.btc {
    border-radius: 10px 0px 0px 0px;
    padding: 12px 20px 12px 20px;
    color: #000;
    background-color: #fff;

    border: 2px solid #000;
    border-right: none;
    border-bottom: none;

    font-size: 1.15rem;
    cursor: pointer;
}
.xmr {
    border-radius:  0px 10px 0px 0px;
    padding: 12px 20px 12px 20px;
    color: #fff;
    background-color: #000;
    
    border: 2px solid #000;
    border-left: none;
    border-bottom: none;

    font-size: 1.15rem;
    cursor: pointer;
}


.dontation-card {
    display: block;
    border: 2px solid #000;
    border-radius: 10px;
    padding: 25px 45px 15px 45px;

    width: min-content;
}

.crypto-title {
    text-align: left;
    font-size: 1.5rem;
    font-weight: 800;
}


.donation-card-subtitle {
    text-align: left;
    font-size: 1.15rem;
    font-weight: 800;
}

.donation-card-wallet-text {
    text-align: left;
    font-weight: 500;
}

.donation-card-text {
    text-align: left;
}

.list-3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Responsive styling */
@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }

    .content {
        flex-direction: column;
        align-items: center;
    }

    .content section {
        width: 80%;
    }

    nav ul li {
        display: block;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.5em;
    }

    nav ul li {
        font-size: 1em;
    }

    .content section {
        width: 100%;
    }
}
