.full-addr {
    display: none;
}

.addr-container {
    padding: 10px;
    width: fit-content;
}

.addr {
    font-family: 'Roboto mono', monospace;
    font-size: 1vw;
    text-align: center;
}

.click-to-copy-addr {
    text-align: center;
    margin-top: 10px;

    font-size: clamp(0.1vw, 20rem, 14px);
}

.copy-xmr-addr:hover {
    color: orange;
}

.contrib-box-head {
    display: flex;
    flex-direction: row;
    gap: 0.5vw;

    margin-bottom: 10px;

    justify-content: center;
    align-items: center;

    font-size: clamp(0.5vw, 20rem, 16px);
}

.contrib-icon {
    width: clamp(0.2vw, 20rem, 16px);
    height: clamp(0.2vw, 20rem, 16px);
}

.contribute-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    height: 70vh;
    width: 100%;

    margin-top: 10vh;
}

.xmr-container {

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 20px;
    padding-bottom: 30px;
    padding-top: 30px;

    border-radius: 20px;

    background: linear-gradient(10deg, #131313, black, #0e0e0e);

    transition: all 0.5s ease;
}

.xmr-container:hover {
    scale: 1.1;
}

.qr {
    width: clamp(100px, 30vw, 40vh);
}

@media (max-aspect-ratio: 3/4)  {

    .qr {
        width: clamp(100px, 20vw, 30vw);
    }

    .crypto-container {
        scale: 2;
    }

    .crypto-container:hover {
        scale: 2;
    }
}