
/* Font face for a custom font */
@font-face {
	font-family: "Bungee Spice";
	font-style:normal;
	font-weight: 400;
	src: url("fonts/BungeeSpice-Regular.ttf");
}

/* h1 tag customization for font, aligmnet, and color */ 
h1 {
	background-image: linear-gradient(to right, red , black);
	text-align: center;
	font-family: Bungee Spice, Arial, sans-serif;
	font-weight: 600;
}

/* h3 tag customization for font */
h3 {
	font-family: Bungee Spice;
	font-weight: 500;
}


/* body tag customization for font type, size, aligment, and background image */
body {
	margin: 25px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	text-align: center;
	background-image: url("images/aceofspades.png");
	background-repeat: repeat;
	background-position-x: center;
	background-size: cover;
	background-clip: content-box;
}


/* universal text color */
* {
  color: red;
}

/* footer tag margin customization */
footer {
	  margin-top: 50px;
	  margin-bottom: 50px;
}


/* img tag border customization */
img {
	border: 2px solid red;
	border-radius: 10px;
}


/* external link color */
.external-link::after {
	content: ' (external)';
	color: blue;
}




/* rotate class modifers */ 
.rotate {
	transform-origin: center;
	background-position: center center;
	transform: perspective(200px) rotateX(45deg);
}




/* these are the modifers for the scale class */
.scale {
	text-align: center;
	transform: scale(2,2);
}






/* skew class modifers */
.skew {
	transform: skew(15deg, 5deg);
	text-align: center;
}






/* transform class modifers */
.transform {
	transform: rotate(-4deg) translateX(50px) scale(2,2);
	text-align: center;
}






/* transition class modifers */
.transition {
	background-color: red;
    transition-property: background-color, transform;
    transition-duration: 500ms, 500ms;
    transition-delay: 0ms, 500ms; 
}
