@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
}



.container_flotante{
    min-height: 100vh;    

    background-size: cover;
    background-position: center;
}


.container_flotante .btn-float .btn{
    text-decoration: none;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 2px;
    background-color: #29434e;
    padding: 15px 25px;
    border-radius: 20px;
    color: #fff;
    position: fixed;
    right: 40px;
    bottom: 40px;
    transition: all 0.3s ease 0s;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
    z-index: 99;

    
}

.container_flotante .btn-float .btn:hover{
    color: #FFBA08;
	box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.5);
	transform: translateY(-7px);
}


