html { 

    background-image: url("imagenes.c/camion%20perfilllllll.png"), url("imagenes.c/picnic.avif");
    background-size: 90% auto, cover;
    background-position: center center, center center;
    background-repeat: no-repeat;
    font-family:cursive   
        
}

  
#lol {
    position: fixed;
    top: 250px; /* PARA COLOCARLO distancia desde arriba */
    right: 300px; /* PARA COLOCARLO distancia desde la derecha */
    width: 100px;
    height: 100px;
}

.img2 {
    width: 100px;
    height: 100px;
}

.img1 {
    position: absolute;
    height: 90px;
    width: auto;

    left: 65px;

    animation: spin 4s linear infinite;
}

.img1:hover {
    cursor: pointer;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}
