#iframeBox {
    z-index: 9999;
    position: fixed;
    bottom: 2%;
    right: 2%;
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    border: none;
    width: 22%;
    height: 50%;
    background-color: black;
    box-shadow: 0px 0px 12px 0px rgb(250, 250, 250, 0.4);
}



#heading {
    color: white;
    position: absolute;
    top: 20%;
    z-index: 10;
}

#avatarImage {
    position: fixed;
    z-index: 1000;
    right: 2.5%;
    bottom: 5%;
    border-radius: 100%;
    cursor: pointer;
    transition: 0.5s;
    width: 6rem;
    height: 6rem;
    box-shadow: 0 0 15px 6px rgba(255, 255, 255, 0.05),
                0 0 25px 10px rgba(0, 0, 0, 0.2);
    filter: drop-shadow(0 0 6px rgba(0,0,0,0.25)) blur(0.3px);
}

#avatarImage:hover {
    box-shadow: 0 0 50px 1px rgb(169, 169, 169);
}

/* #avatarContainer {
    position: fixed;
    z-index: 1000;
    right: 2.5%;
    bottom: 5%;
    border-radius: 100%;
    cursor: pointer;
    transition: '0.3s';
    overflow: hidden;
} */




@keyframes spinning82341 {
    to {
        transform: rotate(360deg);
    }
}


#spinner {
    background-image: linear-gradient(rgb(186, 66, 255) 35%, rgb(186, 194, 195));
    /* width: 100px;
    height: 100px; */
    animation: spinning82341 3.5s linear infinite;
    text-align: center;
    border-radius: 100%;
    filter: blur(1px);
    box-shadow: 0px -5px 20px 0px rgb(186, 66, 255), 0px 5px 20px 0px rgb(241, 235, 229);

    position: fixed;
    z-index: 100;
    right: 2.5%;
    bottom: 5%;

}

#spinner1 {
    background-color: rgb(36, 36, 36);
    width: 6rem;
    height: 6rem;
    border-radius: 100%;
    filter: blur(10px);
}

@keyframes spinning82341 {
    to {
        transform: rotate(360deg);
    }
}


@media (max-width: 480px) {
    #iframeBox {
        width: 80%;
        height: 40%;
    }
    #avatarImage {
        height: 5rem;
        width: 5rem;
    }
    #spinner1{
        height: 5rem;
        width: 5rem;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    #iframeBox {
        width: 50%;
        height: 40%;
    }
}

@media (min-width: 769px) {
    #iframeBox {
        width: 25%;
        height: 50%;
    }
}