/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 18 2025 | 09:11:05 */
#button-chromatic-aberration {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	
	.button {
		width: 240px;
		padding: 12px 24px 8px 24px;
		display: flex;
		justify-content: center;
		transform: skew(-10deg);

		> * {
			transform: skew(10deg);
			font-weight: 800;
		}
	}
	
	.buton:hover {
		transform: scale(0.93) skew(-10deg) rotate(1deg);
	}
	
	&.yellow {
		.button {
			background-color: yellow;
			color: black;
			box-shadow: 
			-4px -4px 0 4px lime,
			4px 4px 0 4px red;
		}
	}
	
	&.white {
		.button {
			background-color: white;
			color: black;
			box-shadow: 
				-4px -4px 0 4px yellow,
				4px 4px 0 4px blue;
		}
	}
	
	&.black {
		.button {
			background-color: black;
			color: white;
			box-shadow: 
				-4px -4px 0 4px red,
				4px 4px 0 4px lime;
		}
	}
}

.button-container {
	display: flex;
	align-items: center;
	justify-content: center;
}
.button-white {
	width: 240px;
	background-color: white;
	padding: 12px 24px 8px 24px;
	transform: skew(-10deg);
	display: flex;
	justify-content: center;
	color: black;
	font-weight: 800;
	cursor: pointer;
	
	> * {
		transform: skew(10deg);
	}
	
	&:hover{
		transform: scale(0.93) skewX(-10deg) rotate(1deg);
	}
}

@media only screen and (max-width: 768px) {
	#button-chromatic-aberration .button:hover,
	.button-white:hover {
		transform: skew(-10deg);
	}
}