div#floating-arrow {
	position: fixed;
	right: 20px;
	bottom: 20px;
	width: 70px;
	height: 70px;
	border-radius: 5px;
	background: linear-gradient(150deg, #A3044C, #4D179A);
	color: white;

	cursor: pointer;

	transition: bottom 0.1s;
}

div#floating-arrow:hover {
	bottom: 30px;

	transition: bottom 0.1s;
}

div#floating-arrow::before {
	content: "↑";
	font-size: 36px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}