/* hide on default, then once everything has loaded,
fadeIn() our content using jquery */
#container { display: none; border: none; }


/* ----------------------------------------
	Helpers
---------------------------------------- */
div { border: solid blue 1px; }


/* ----------------------------------------
	Character Defaults
---------------------------------------- */

/* any shared qualities between your two characters */
.character { 
	width: 150px;
	height: 150px;
}

#thing-1 { 
	background: pink;
	/* position your character however you'd like within the container */
	bottom: 30%; 
	right: 5%;
}

#thing-2 { 
	background: yellow;
	/* position your character however you'd like within the container */
	bottom: 10%;
	left: 5%;
}


/* ----------------------------------------
	Character States
	for each character, there are 5 states ... 

	1. default : what we see when we land on the page
	2. hover : when our cursor is over the character
	3. click : when we click on the character
	4. hover-response : how character responds to its partner being hovered on
	5. click-response : how character responds to its partner being clicked on;
---------------------------------------- */

/* THING 1 */
#thing-1 {}
#thing-1.hover {}
#thing-1.click {}

/* THING 1 responding to thing 2 */
#thing-1.hover-response {
	animation: thing-1-hover-response 3ms linear infinite alternate;
	animation-fill-mode: forwards;
}
#thing-1.click-response {}


/* THING 2 */
#thing-2 {}
#thing-2.hover {}
#thing-2.click {}

/* THING 2 responding to thing 1 */
#thing-2.hover-response {}
#thing-2.click-response {}


@keyframes thing-1-hover-response {
	0% { transform: translate(-10px,10px); }
	25% { transform: translate(-10px,-10px); }
	50% { transform: translate(10px,-10px); }
	75% { transform: translate(-10px,10px); }
}
















