.float {
	position: fixed;
	width: 80px;
	height: 80px;
	bottom: 30px;
	right: 30px;
	background-color: var(--primary-color);
	color: #FFF;
	border-radius: 50px;
	text-align: center;
	font-size: 45px;
	box-shadow: 2px 2px 3px #999;
	z-index: 100;
}

.float:hover {
	text-decoration: none;
	color: #fff;
	background-color: var(--primary-color);
}

.my-float {
	margin-top: 16px;
}