/*@charset "utf-8";
/* CSS Document */

/* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}


i {
    position: absolute;
    background: #fff;
    border-radius: 50%;	
    box-shadow: inset 0 -1px 1px rgb(114, 114, 114);
	top: -10px;
    animation: nieve linear infinite;
	filter:blur(1.5px);
	
}

@keyframes nieve {
    0% {
        top: -10px;
    }
    100% {
        top: calc(100vh + 100px);
    }
}*/

#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    /* Estilos opcionales */
    background-color: #333;
    color: white;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
}