.fixed-menu {
	position: fixed;
	bottom: 10px;
	right: 10px;
	width: 50px;
	height: 50px;
	box-shadow: 0px 0px 5px grey;
	border-radius: 10px;
	background-color: white;
}

.fixed-menu img {
	display: block;
	width: 80%;
	margin: 0 auto;
	padding-top: 5px;
}

.fixed-menu:hover {
	box-shadow: 0px 0px 5px black;
}

.fixed-menu:active {
	transform: scale(0.9);
}

.myMenu {
	display: none;
	position: fixed;
	bottom: 80px;
	right: 10px;
	width: 40px;
	height: 200px;
	box-shadow: 0px 0px 2px grey;
	border-radius: 50px;
	background-color: white;
	transition: height 1s;
}

.myMenu a img {
	display: block;
	width: 80%;
	margin: 0 auto;
	padding-top: 15px;
}

.myMenu a img:hover {
	transform: scale(1.1);
}
