@charset "UTF-8";

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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 {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
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: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}




/* THE REAL STUFF */

body {
	background-color: #FFF;
}
.a_container_has_no_name {
    width: 75%;
    position: absolute;
    left: 12.5vw;
    top: 30%;
    text-align: center;
}

h1 {
	font-family: 'Playfair Display', serif;
	font-style: normal;
	font-weight: normal;
	font-size: 6vw;
	color: #000;
	text-align: center;
	visibility: hidden;
	line-height: 1.2;
}


h1 a {
	position: relative;
	color: #000;
	transition:1s;
	text-decoration: none;
}

h1 a:hover {
    -webkit-animation: changeColor 20s forwards;
    animation: changeColor 20s forwards;
	color: #120a8f;
}
h1 a:active {
	color: #000;
}

@-webkit-keyframes changeColor{
	0%{color: #000;}
	10%{color: blue;}
	15%{color: crimson;}
	20%{color: darkviolet;}
	25%{color: dodgerblue;}
	30%{color: indigo;}
	35%{color: lightgreen;}
	40%{color: lightseagreen;}
	45%{color: mediumspringgreen;}
	50%{color: midnightblue;}
	55%{color:slateblue;}
	60%{color: blue;}
	65%{color: crimson;}
	70%{color: darkviolet;}
	75%{color: dodgerblue;}
	80%{color: indigo;}
	85%{color: lightgreen;}
	90%{color: lightseagreen;}
	95%{color: mediumspringgreen;}
	100%{color:slateblue;}
}
@keyframes changeColor{
	0%{color: #000;}
	10%{color: blue;}
	15%{color: crimson;}
	20%{color: darkviolet;}
	25%{color: dodgerblue;}
	30%{color: indigo;}
	35%{color: lightgreen;}
	40%{color: lightseagreen;}
	45%{color: mediumspringgreen;}
	50%{color: midnightblue;}
	55%{color:slateblue;}
	60%{color: blue;}
	65%{color: crimson;}
	70%{color: darkviolet;}
	75%{color: dodgerblue;}
	80%{color: indigo;}
	85%{color: lightgreen;}
	90%{color: lightseagreen;}
	95%{color: mediumspringgreen;}
	100%{color:slateblue;}
}

h2 {
	font-family: "Helvetica Neue",Helvetica,Arial,sans-serif; 
	font-style: normal;
	font-weight: 400;
	font-size: 10px;
	color: #000;
	text-align: center;
	margin-top: 100px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	visibity: hidden;
}

h2 a {
	color: #000;
	text-decoration: none;
	transition:1s;
}
h2 a:hover {
	color: #120a8f;
	text-decoration: none;
    -webkit-animation: changeColor 20s forwards;
    animation: changeColor 20s forwards;
}
h2 a:active {
	color: #000;
}

@media only screen and (max-width: 600px) {
	.a_container_has_no_name {
		width: 95%;
		left: 2.5vw;
	}
	
	h1 {
		font-size: 12vw;
	}
	
	h2 {
		font-size: 8px;
	}
}
