	/*boton de ir arriba*/
#button-up{


width: 60px;
height: 60px;
background: #46a2fd;
display: flex;
justify-content:center;
align-items:center;
color: #ffffff;
border-radius:50%;
font-size:20px;
position: fixed;
bottom:50px;
right: 50px;
cursor: pointer;
border: 4px solid transparent;
transition:all 300ms ease;
}

#button-up:hover{
	transform:scale(1.1);
	border-color: rgba(0.0.0.0.1); 
}