@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;
    height: 100%;
    display: flex;
    align-items: center;
    min-height: 100vh;
    justify-content: center;
}
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: 77%;
    text-align: center;
}

h1 {
	font-family: "Helvetica Neue",Helvetica,Arial,sans-serif; 
	font-style: normal;
	font-weight: 800;
	font-size: 5vw;
	color: #000;
	text-align: center;
	visibility: hidden;
	line-height: 1.4;
}


h1 a {
	color: #000;
    white-space: nowrap;
	transition:1s;
}
h1 a:hover {
    -webkit-animation: changeColor 2s forwards infinite;
    animation: changeColor 2s forwards infinite;
	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: 30px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	visibity: hidden;
}

h2 a {
	color: #000;
	text-decoration: none;
	margin-right: 4px;
	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 (min-width: 751px) {
	h1 a:nth-of-type(2),
	h1 span:nth-of-type(2) {
		font-size: 4.8vw;
	}
	h1 a:nth-of-type(3),
	h1 span:nth-of-type(3) {
		font-size: 4.6vw;
	}
	h1 a:nth-of-type(4),
	h1 span:nth-of-type(4) {
		font-size: 4.4vw;
	}
	h1 a:nth-of-type(5),
	h1 span:nth-of-type(5) {
		font-size: 4.2vw;
	}
	h1 a:nth-of-type(6),
	h1 span:nth-of-type(6) {
		font-size: 4vw;
	}
	h1 a:nth-of-type(7),
	h1 span:nth-of-type(7) {
		font-size: 3.8vw;
	}
	h1 a:nth-of-type(8),
	h1 span:nth-of-type(8) {
		font-size: 3.6vw;
		margin-right: 5px;
	}
	h1 a:nth-of-type(9),
	h1 span:nth-of-type(9) {
		font-size: 3.4vw;
	}
	h1 a:nth-of-type(10),
	h1 span:nth-of-type(10) {
		font-size: 3.2vw;
	}
	h1 a:nth-of-type(11),
	h1 span:nth-of-type(11) {
		font-size: 3vw;
	}
	h1 a:nth-of-type(12),
	h1 span:nth-of-type(12) {
		font-size: 2.8vw;
	}
	h1 a:nth-of-type(13),
	h1 span:nth-of-type(13) {
		font-size: 2.6vw;
	}
}
@media only screen and (max-width: 750px) {
	.a_container_has_no_name {
		width: 90%;
	}
	
	h1 {
		font-size: 11vw;
	}
	
	h2 {
		font-size: 8px;
	}
}
