/*---------NOTES------------

COLORS:
taupe:#E6E7E1
mauve:#D26569
violet:#C485F0
grey:#5C5863

violet = rgba(196, 133, 240, 1);
mauve =  rgba(210, 101, 105, 1);
taupe = rgba(230, 231, 225, 1);
grey = rgba(92, 88, 99, 1);

TYPEFACES:
Kepler Std Display: "kepler-std-display-1","kepler-std-display-2" 300 normal/italic
Kepler Std: "kepler-std-1","kepler-std-2" 300 normal, 400 normal/italic
Franklin Gothic URW: "franklin-gothic-urw-1","franklin-gothic-urw-2" 400 normal, 700 normal

*/


/*--------STRUCTURE--------*/

body {
	overflow: hidden;
	font-size: 100%;
	color:#5C5863;
	background-color:#D26569;
	text-align: center;
	line-height: 1.5em;
}

canvas {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	cursor:crosshair;
	z-index: -99;

}

#circle {
	position: fixed;
	width: 29em;
	height: 29em;
	z-index: 100;
	background: rgba(230, 231, 225, .8);
	border-radius: 29em;
	border: 0.5em solid rgba(230, 231, 225, 1);
	cursor: pointer;

}

.inactive {
	top: 100%;
	left: 50%;
	margin: -7.5em 0 0 -14.5em;
	/*cursor: pointer;*/
	-webkit-transition: 300ms ease-in-out margin-top, 300ms ease-in-out top;
	-moz-transition: 300ms ease-in-out margin-top, 300ms ease-in-out top; 
	-ms-transition: 300ms ease-in-out margin-top, 300ms ease-in-out top;
	transition: 300ms ease-in-out margin-top, 300ms ease-in-out top; 
}

.active {
	top: 50%;
	left: 50%;
	margin: -14.5em 0 0 -14.5em;
	-webkit-transition: 300ms ease-in-out margin-top, 300ms ease-in-out top;
	-moz-transition: 300ms ease-in-out margin-top, 300ms ease-in-out top; 
	-ms-transition: 300ms ease-in-out margin-top, 300ms ease-in-out top;
	transition: 300ms ease-in-out margin-top, 300ms ease-in-out top; 
}

.bump {
	top: 100%;
	left: 50%;
	margin: -8.25em 0 0 -14.5em;
	/*cursor: pointer;*/
	-webkit-transition: 200ms ease-in-out margin-top;
	-moz-transition: 200ms ease-in-out margin-top; 
	-ms-transition: 200ms ease-in-out margin-top;
	transition: 200ms ease-in-out margin-top; 
}

#close {
	left: 50%;
	position: fixed;
	/*border: 0.063em solid rgba(92, 88, 99, 1);
	border-radius: 2em;*/
	margin-top: 3em;
	/*cursor: pointer;*/
}

#close p {
	padding: 0;
}

#close:hover {
	color: rgba(196, 133, 240, 1);
	/*background-color: rgba(196, 133, 240, 1);*/
	/*border: 0.063em solid rgba(196, 133, 240, 1);
	border-radius: 1.5em;*/
}

a {
	display: inline-block;
	color: #5C5863;
	border-bottom: 1px dotted rgba(196, 133, 240, 1);
}

a:hover {
	color: rgba(230, 231, 225, 1);
	background-color: rgba(196, 133, 240, 1);
}

/*--------TYPOGRAPHY--------*/


h1 {
	font-family: "franklin-gothic-urw-1","franklin-gothic-urw-2", Helvetica, Arial, sans-serif;
	text-transform: uppercase;
	font-size: 0.75em;
	line-height: 1.333em;	
	letter-spacing: 1.5px;
}

.title {
	font-weight: 300;
	padding-bottom: 0.6;
}

.name {
	font-weight: 500;
	margin-top: 4em;
	padding-top: 0.6em;
}

h2 {
	/*font-family: "kepler-std-display-1","kepler-std-display-2";*/
	font-family: "kepler-std-1", "kepler-std-2";
	font-size: 1.5em;
	line-height: 1em;
	font-weight: 300;
	font-style: italic;
	margin-top: 3em;
}

p {
	font-family: "kepler-std-1","kepler-std-2";
	font-size: 1.125em;
	line-height: 1.333em;
	font-weight: 300;
	margin-top: 1.3em;
	letter-spacing: 0.5px;
}

strong {
	font-weight: 600;
}

