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

#thing-1 { 
	width: 300px;
	top: 200px;
	right: 100px;
	
}

#thing-2 { 
	width: 300px;
	top: 200px;
	left: 100px;

}


/* ----------------------------------------
	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.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 {
	animation: none;
}


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


.background-image {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Basic background image styling. */
.background-image {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Styles for the alternating / transition effect. */
.toggle-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 800px;
}













