.fab {
	background-color: white;
	border-radius: 50%;
	border: none;
	color: var(--secondary);
	outline: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 80px;
	width: 80px;
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	transition: transform 300ms;
	z-index: 10;
	&:hover {
		transform: scale(1.1);
	}
}
