/* Eric Meyer's Reset CSS v2.0 - http://cssreset.com */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{border:0;font-size:100%;font:inherit;vertical-align:baseline;margin:0;padding:0}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}table{border-collapse:collapse;border-spacing:0}


/* General Styles */

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html, body { min-height: 100%; }

body {
	text-align: center;
	font-family: 'Schoolbell', cursive;
	font-size: 28px;
	text-transform: uppercase;
	margin: 40px auto;
	background: -webkit-linear-gradient(#4b1aa1 0%, #ed5655 100%);
	color: #fff;
}

h1 {
	font-size: 60px;
	line-height: 40px;
	width: 700px;
	margin: 40px auto;
	font-family: 'Six Caps', cursive;
}

.name {
	position: relative;
	z-index: 100;
}

.random.name {
    transform: translateY(5em);
    font-size: 1.4em;
    color: #f51c73;
    text-shadow: 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff;
    cursor: pointer;
}

.random.name:hover {
	color: #fff;
}

.message {
	position: relative;
	display: none;
	margin: 20px 0;
	font-size: 54px;
	z-index: 300;
	text-shadow: 0px 0px 2px #000, 0px 0px 2px #000, 0px 0px 2px #000;
}

.colormask {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: #000;
	display: none;
}

.bighead {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 600px;
	height: 600px;
	transform: translate(-50%, -50%) scale(0);
	background: url(showmewhatyougot.png) no-repeat center center;
	background-size: contain;
	transition: transform .3s ease-in-out;
	z-index: 200;
}

.bighead.shown {
	transform: translate(-50%, -50%) scale(1.6);
}

.response {
	position: fixed;
	bottom: 40px;
	right: 40px;
	z-index: 100;
}

button {
	border: none;
	background: none;
	font-size: 1em;
	outline: none;
}