/* Menu css start */
#toggle-btn, .menu a {
	position: absolute;
	display: grid;
	place-items: center;
	border-radius: 50%;
}
.menu a {
	background-color: rgb(240, 240, 240);
	height: 40px;
	width: 40px;
	font-size: 22px;
	color: #060722;
	text-decoration: none;
	top: 30px;
	left: 30px;
	transition: 0.5s;
}
.menu i {
	white-space: nowrap;
	visibility: hidden;
	margin-left: 40px;
}
.menu a svg {
	position: absolute;
}
#toggle-btn {
	height: 60px;
	width: 60px;
	border: none;
	font-size: 40px;
	top: 15px;
	left: 15px;
	transition: 0.3s;
	cursor: pointer;
}
.active {
	transform: rotate(45deg);
}

#main {
	transition: margin-left .5s;
	padding: 20px;
}
/* Menu css end */