
/* PoweredBy */
.PoweredBy {
    background: linear-gradient(135deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
    display: flex;
    width: 14rem;
    cursor: pointer;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .2);
    align-items: center;
    border-radius: 2rem;
    text-decoration: none;

    a {
        text-decoration: none;
        color: white;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 6px;

        &:hover{
            text-decoration: none;
        }
    }

    position: fixed;
    right: 1rem;
    bottom: 1rem;

    &:hover {
        box-shadow: inset 0 0 1px rgba(255, 255, 255, .5), 0 12px 40px rgba(255, 255, 255, .1), 0 6px 30px rgba(0, 0, 0, .2);
        background: linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03));
    }

    img {
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
    }
}