
/* Font face for a custom font */
@font-face {
	font-family: "Bungee Spice";
	font-style:normal;
	font-weight: 400;
	src: url("../homework4/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;
}





/* h1 tag customization for font, aligmnet, color, and Media query with a breakpoint*/
@media screen and (max-width: 800px) {
	h1 {
	background-image: linear-gradient(to right, red , black);
	text-align: center;
	font-family: Bungee Spice, Arial, sans-serif;
	font-weight: 600;
	font-size: 1em;
	}
}


/* 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("../homework4/images/aceofspades.png");
	background-repeat: repeat;
	background-position-x: center;
	background-size: cover;
	background-clip: content-box;
}







/*Media query that changes the font size when screen is 800px */
@media screen and (max-width: 800px) {
	body {
	    margin: 25px;
	    font-family: Arial, Helvetica, sans-serif;
	    font-size: 0.7em;
	    text-align: center;
	    background-image: url("../homework4/images/aceofspades.png");
	    background-repeat: repeat;
	    background-position-x: center;
	    background-size: cover;
	    background-clip: content-box;
	}
}





/* Media query that changes bg color when screen is 600px */
@media screen and (max-width: 600px) {
	body {
		background-color: black;
	}
}





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

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


/* img tag border customization and added responsive image */
img {
	border: 2px solid red;
	border-radius: 10px;
	max-width: 100%;
}


/* 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; 
}






/* container class modifers */
.container {
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-wrap: wrap;
	background: black;
	padding: 0.25em;
}





/* item class modifers */
.item {
	background: black;
	color: red;
	text-align: center;
	margin: 0.25em;
	font-size: 12px;
}




/* wide class modifers */
.wide {
	width: 300px;
}