:root {
--bodyFont: "Satoshi", sans-serif;
--titleFont: "Clash Grotesk", sans-serif;
--primaryColor: #613FE7;
--secondaryColor: #FA83FF;
--secondaryColor2: #6339CD;
--secondaryColor3: #AC643B;
--secondaryColor4: #047F76;
--hoverColor: #FA83FF;
--bodyColor: #606062;
--whiteColor: #FFFFFF;
--blackColor: #000000;
--titleColor: #1D1D1F;
--borderColor: #e2eaf0;
--inputbgColor: #ffffff;
--softbgColor: #F9F9FA;
--transition: 0.4s all ease;
}
.image_swing {
animation: move 10s ease-in-out infinite alternate;
}
@keyframes move {
0% {
transform: rotate(3deg);
}
50% {
transform: rotate(-3deg);
}
100% {
transform: rotate(3deg);
}
}