@charset "UTF-8";
/* CSS Document */





body {
	background: #fff;
	margin: 0;
	padding: 0;
	text-align: center;
	color: #000;
	font-family: futura-pt, sans-serif;
	font-weight: 400;
	font-variant-ligatures: no-common-ligatures;
}


p.harmful {
	font-size: 90px; /*fallback just in case vw doesn't work*/
	font-size: 7.25vw;
	font-weight: 400;
	font-style: regular;
	letter-spacing: 0em;
	color: #fff;
	line-height: 1.5em;
	text-decoration: none;
	text-align: justify;
	text-align-last: center;
	text-justify: inter-word;
}



div.description {
	margin: 50vh auto 0 auto;
	padding: 0;
	width: 800px;
	width: 85vw;
	z-index: 2;
	position: absolute; /*must have a value for z-index to work*/
	left: 0; /*must have these l and r values to actually center the div*/
	right: 0;
}

.center {
	margin: 0 auto;
	padding: 0;
	text-align: center;
}


a:link {
	color: #3f0;
}

a:visited {
	color: #0cf;
}

a:hover {
	color: #f0c;
}

a:active {
	color: #90f;
}




img.crafted {
	display: block;
	width: auto;
	height: auto;
	margin: auto;
}




img.redox {
	width: 80%;
	height: auto;
	margin: auto;
	-webkit-filter: hue-rotate(90deg); /* Safari 6.0 - 9.0 */
	filter: hue-rotate(90deg);
	z-index: 1;
	text-align: center;
	display: block;
	
}



img.cover {
	object-fit: cover;
	margin: auto;
	width: 100vw;
	height: 100vh;
	-webkit-filter: hue-rotate(90deg); /* Safari 6.0 - 9.0 */
	filter: hue-rotate(90deg);
	z-index: 1;
	position: fixed;
	text-align: center;
	display: block;

}



img.fill {
    width: 100%;
    height: 100%;
    object-fit: fill;
}


div.viewport {
    height: 100vh;
}


img.cover.animated {
	
-webkit-animation: filter-animation 4s infinite;
  animation: filter-animation 4s infinite;
}

@-webkit-keyframes filter-animation {
  0% {
    -webkit-filter: hue-rotate(0deg);
  }
/*
  33% {
    -webkit-filter: hue-rotate(720deg);
  }
  
  66% {
    -webkit-filter: hue-rotate(0deg);
  }
*/
  100% {
    -webkit-filter: hue-rotate(1440deg);
  }
}

@keyframes filter-animation {
  0% {
    filter: hue-rotate(0deg);
  }
/*
  33% {
    filter: hue-rotate(720deg);
  }

  66% {
    filter: hue-rotate(0deg);
  }
*/
  100% {
    filter: hue-rotate(1440deg);
  }
}





img.redox.animated {
	
-webkit-animation: filter-animation 10s infinite;
  animation: filter-animation 10s infinite;
}

@-webkit-keyframes filter-animation {
  0% {
    -webkit-filter: hue-rotate(0deg);
  }
/*
  33% {
    -webkit-filter: hue-rotate(720deg);
  }
  
  66% {
    -webkit-filter: hue-rotate(0deg);
  }
*/
  100% {
    -webkit-filter: hue-rotate(1440deg);
  }
}

@keyframes filter-animation {
  0% {
    filter: hue-rotate(0deg);
  }
/*
  33% {
    filter: hue-rotate(720deg);
  }

  66% {
    filter: hue-rotate(0deg);
  }
*/
  100% {
    filter: hue-rotate(1440deg);
  }
}



/* NOTES
The first publicized animations used: filter-animation 2s infinite; with hue-rotate keyframes being 0% = 0deg, 100% = 720deg;
The second: 4s; 0, 1440;
The third: 6s; 0, 2880;
The fourth: 2s; 0, 360;
The fifth: 10s; 0, 2880;
The sixth: 4s; 0, 1440;
The seventh: 16s; 0, 1440;
The eighth: 4s; 0, 1440;

*/




