@font-face {
    font-family: 'aquilinetworegular';
    src: url('AquilineTwo-webfont.eot');
    src: url('AquilineTwo-webfont.eot?#iefix') format('embedded-opentype'),
         url('AquilineTwo-webfont.woff') format('woff'),
         url('AquilineTwo-webfont.ttf') format('truetype'),
         url('AquilineTwo-webfont.svg#aquilinetworegular') format('svg');
    font-weight: normal;
    font-style: normal;

}
body {
	margin: 0;
	padding: 0;
	background-color: #444;
	font-family: 'aquilinetworegular', cursive, sans-serif;
	text-align: center;
}
h1 {
	font-size: 1.7em;
	line-height: 1.4;
	margin-top:0;
}
#layout {
	border:1px solid #333;
	position: relative;
	border-radius: 1em;
	background:#fff;
	margin:0.4em auto 0 auto;
	width: 90%;
	padding:0.5em;
	background-image: url(../images/shakes.jpg);
	background-position: 50% 50%;
	background-repeat: no-repeat;
	min-height: 26em;
}
#result {
	margin:0 1em 1em;
	font-size:2.6em;
	color:maroon;
	line-height: 1.5;
}
#insult_me {
	font-size: 1.7em;
	color: #fff;
	position: absolute;
	bottom:0.3em;
	left: 2%;
	line-height: 1.3;
	padding:0 0.5em 0.5em;
	width: 96%;
	font-family: 'aquilinetworegular', sans-serif;
	border-radius: 1em;
	cursor: pointer;
	background: #f0b7a1; /* Old browsers */
background: -moz-linear-gradient(top, #f0b7a1 0%, #8c3310 50%, #752201 51%, #bf6e4e 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f0b7a1), color-stop(50%,#8c3310), color-stop(51%,#752201), color-stop(100%,#bf6e4e)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #f0b7a1 0%,#8c3310 50%,#752201 51%,#bf6e4e 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #f0b7a1 0%,#8c3310 50%,#752201 51%,#bf6e4e 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #f0b7a1 0%,#8c3310 50%,#752201 51%,#bf6e4e 100%); /* IE10+ */
background: linear-gradient(to bottom, #f0b7a1 0%,#8c3310 50%,#752201 51%,#bf6e4e 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f0b7a1', endColorstr='#bf6e4e',GradientType=0 ); /* IE6-9 */
}
@media screen and (min-width: 760px) {
	#result {
		font-size: 4.5em;
	}
}
@media screen and (min-width: 1025px) {
	#result {
		font-size: 6em;
	}
	#layout {
		min-height: 33em;
	}
}

.fade-in {
	animation: fadeIn 1.2s;
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}