@font-face {
	font-family: "digital_dreamregular";
	src: url("fonts/digitaldream-webfont.woff2") format("woff2"),
		url("fonts/digitaldream-webfont.woff") format("woff");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "digital_dream_fatregular";
	src: url("fonts/digitaldreamfat-webfont.woff2") format("woff2"),
		url("fonts/digitaldreamfat-webfont.woff") format("woff");
	font-weight: normal;
	font-style: normal;
}

@keyframes swing {
	0% {
		transform: rotate(1deg);
	}
	25% {
		transform: rotate(-1deg);
	}
	50% {
		transform: rotate(1.5deg);
	}
	75% {
		transform: rotate(-1deg);
	}
	100% {
		transform: rotate(1deg);
	}
}

.animate-swing {
	animation: 20s ease-in-out 0s infinite normal none running swing;
	transform-origin: top;
	margin-top: -100px;
	padding-bottom: 30px;
	padding-left: 30px;
	padding-right: 30px;
	margin-left: auto;
	margin-right: auto;
}
