<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body{
    background-color: rgb(255, 255, 255);
}

.container-boton{
    /*background-color: #f31710;*/
    /*border: 0px solid #fff;*/
    position: fixed;
    z-index: 999;
    border-radius: 50%;
    bottom: 5%;
    right: 4%;
    padding: 1%;
    transition: ease 0.3s;
    /*animation: efecto 1.2s infinite;*/
}

.container-boton:hover{
    transform: scale(1.3);
    transition: 0.3s;
}

.boton{
    width: 60px;
    transition: ease 1s;
    /*filter: drop-shadow(3px 3px #000);*/
    box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.6);
    border-radius: 60px;
  

}

@keyframes efecto{
    0%{
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.85);
    }
    100%{
        box-shadow: 0 0 0 25px rgba(0, 0, 0, 0);
    }
}</pre></body></html>