html, body {
	margin: 0;
}

a {
	color: white;
}

body {
	background-color: rgb(0 0 0 / 15%);
}

.gradient-background {
	position: fixed;
	width: 100%;
	height: 100%;
	background: rgb(160,76,255);
	z-index: -3;
	background: linear-gradient(146deg, rgba(160,76,255,1) 0%, rgba(6,168,255,1) 100%);
}

.last-groove-link {
	font-weight: bold;
	text-decoration: none;
	transition: 0.2s;
	color: orange;
}

.last-groove-link:hover {
	transition: 0.2s;
	color: #ff3838;
}

.logo-container {
    position: absolute;
    top: 25%;
    left: 50%;
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    z-index: 5;
}

.logo {
	background-image: url('./images/hue-hero-logo.png');
	background-position: center;
    margin-left: auto;
    margin-right: auto;
	width: 41.0625em;
	height: 30.375em;
	background-size: 100% 100%;
}

.legal-and-contact {
	width: 100%;
	height: 6.25em;
	position: absolute;
	bottom: 0;
	font-family: Helvetica, Arial, sans-serif;
	z-index: 8;
}

.contact {
	width: 60%;
	margin: 0 auto;
	height: 5em;
	color: #8d8d8d;
}

.contact a {
	text-decoration: none;
}

.contact td {
	width: 25%;
	text-align: center;
	font-weight: bold;
	background-position: center;
	background-repeat: no-repeat;
	background-size: auto 60%;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
	animation-duration: 0.5s;
	opacity: 0.0;
	cursor: pointer;
}

.phone-outline {
	height: 100%;
}

.phone-container {
	width: 100%;
	height: 62%;
	margin-top: 20px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	position: absolute;
}

.phone-shadow {
	filter: drop-shadow(0px 6px 8px #222222bb);
}

.phone-container video {
	height: 90%;
	margin-top: 22px;
}

.download-link-container {
	height: 90px;
	justify-content: space-evenly;
	display: flex;
    margin-top: 35px;
}

.download-link-section {
	width: 50%;
}

.left-download-link {
	transform: translateX(20px);
}

.right-download-link {
	transform: translateX(-20px);
}

@keyframes link-entrance-up {
	0% {
		opacity: 0.0;
    	-moz-transform: translateX(0%) translateY(50%);
    	-webkit-transform: translateX(0%) translateY(50%);
    	transform: translateX(0%) translateY(50%);
	}
	100% {
		opacity: 1.0;
    	-moz-transform: translateX(0%) translateY(0%);
    	-webkit-transform: translateX(0%) translateY(0%);
    	transform: translateX(0%) translateY(0%);
	}
}

.animate-link-entrance-up {
	animation-name: link-entrance-up;
}

@keyframes link-entrance-down {
	0% {
		opacity: 0.0;
    	-moz-transform: translateX(0%) translateY(-50%);
    	-webkit-transform: translateX(0%) translateY(-50%);
    	transform: translateX(0%) translateY(-50%);
	}
	100% {
		opacity: 0.9;
    	-moz-transform: translateX(0%) translateY(0%);
    	-webkit-transform: translateX(0%) translateY(0%);
    	transform: translateX(0%) translateY(0%);
	}
}

.animate-link-entrance-down {
	animation-name: link-entrance-down;
}

.legal-copy {
	color: #fff;
	font-size: 0.65em;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	opacity: 0;
	animation-name: legal-copy-animation;
	animation-duration: 1s;
	animation-delay: .25s;
	animation-fill-mode: forwards;
}

.facebook {
	background-image: url('./images/social-icon-fb.png');
	animation-delay: 0.25s;
}

.twitter {
	background-image: url('./images/social-icon-tw.png');
	animation-delay: 0.5s;
}

.instagram {
	background-image: url('./images/social-icon-ig.png');
	animation-delay: 0.75s;
}

.email {
	background-image: url('./images/social-icon-mail.png');
	animation-delay: 1s;
}

@keyframes legal-copy-animation {
	0% { opacity: 0.0; }
	100% { opacity: 1.0; }
}

.scaling-download {
	animation-name: animation-scaling;
	animation-iteration-count: infinite;
	animation-duration: 6s;
	margin-left: auto;
	margin-right: auto;
}

.button-top-margin {
	margin-top: 50px;
	display: flex;
}

@keyframes animation-scaling {
	0% {
		transform: scale(0.7);
	}
	50% {
		transform: scale(0.8);
	}
	100% {
		transform: scale(0.7);
	}
}

.emerging {
	width: auto;
	height: 60%;
	opacity: 0.2;
	z-index: -5;
	position: absolute;
	transition: 0.5s;
}

.hero {
	transform: translate(-75%, 20%);
	left: 0;
	animation-name: animation-emerging-left;
	animation-duration: 1s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
}

.monster {
	transform: translate(75%, 20%);
	right: 0;
	animation-name: animation-emerging-right;
	animation-duration: 1s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
}

@keyframes animation-emerging-left {
	0% {
		transform: translate(-75%, 20%);
	}
	100% {
		transform: translate(-30%, 20%);
	}
}

@keyframes animation-emerging-right {
	0% {
		transform: translate(75%, 20%);
	}
	100% {
		transform: translate(45%, 20%);
	}
}

.privacy-section {
	margin: 30px;
	margin-top: 0px;
}

.privacy-title {
	color: white;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 3em;
	border-bottom: 1px solid white;
    padding-bottom: 30px;
	margin-top: 0px;
}

.privacy-text {
	color: white;
	font-family: Arial, Helvetica, sans-serif
}

.privacy-footer {
	bottom: 8px;
	color: white;
	width: 100%;
	font-family: Helvetica, Arial, sans-serif;
	animation: none;
	opacity: 1;
	position: fixed;
}

.hue-hero-logo-background {
	background-image: url('./images/hue-hero-wrapping-logo-large-55.png');
	background-repeat: repeat;
	background-size: 480px;

	animation-name: background-animation;
	animation-duration: 180s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}

@keyframes background-animation {
	0% {
		background-position: 0;
	}
	100% {
		background-position: -480;
	}
}

.background-fader {
	background-color: rgb(0 0 0 / 15%);
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hue-hero-logo-container {
	width: 100%;
	text-align: center;
	height: 100px;
	margin-top: 20px;
	margin-bottom: 10px;
}

.hue-hero-logo {
	margin-left: auto;
    margin-right: auto;
    height: 100px;
    text-align: center;
	cursor: pointer;
}