/* Home Page */
.maintitle{
	font-family:var(--ff-boogaloo);
	font-size:20px;
	color:var(--text-color2);
}
.maindesc{
	font-family:var(--ff-lalezar);
	font-size:40px;
	color:var(--text-color1);
}
.maincontent{
	font-family:var(--ff-roboto);
	font-size:16px;
	color:#777
}
.maincontent:after{
	content:'';
	background:var(--image-bee) no-repeat center;
    display:block;
	margin:0 auto;
	text-align:center;
	height:40px;
	animation: mymove 2s linear infinite alternate;
}
@keyframes mymove {
  from {
    background-position: 48% 0;
  }
  to {
    background-position: 52% 0;
  }  
}
