/* CSS Document */
/* the black moon beside the moon
julianne aguilar
juliannes.website
2021 */

html, body {
	min-height: 100%;
}

body {
	margin: 0;
	padding: 0;
	overflow: hidden;
	background-color: #171717;
}

#container {
	position: relative;
	height: 100vh;
	width: 100vw;
	max-width: 100%;
	padding: 0;
	margin: 0;
	z-index: -1;
}

img {
	width: 20vw;
	height: auto;
	opacity: 0.4;
}

.moon {
	position: absolute;
	right: 10%;
	bottom: 15%;
}

.blackMoon {
	position: absolute;
	right: 40%;
	bottom: 20%;
}

#gradients {
	height: 100vh;
	width: 100vw;
	max-width: 100%;
	padding: 0;
	margin: 0;
	z-index: 2;
}

#gradients>div {
	position: absolute;
	background-repeat: no-repeat;
}

.gradient1 {
	width: 60%;
	height: 60%;
	left: 0;
	top: 0;
	-webkit-animation: ani1 90s linear alternate infinite;
	animation: ani1 90s linear alternate infinite;
	background-image: linear-gradient(rgba(31,29,29,1.0), rgba(31,29,29,0.8), rgba(31,29,29,0.1), rgba(31,29,29,1));
}

.gradient2 {
	width: 70vw;
	height: 80vh;
	left: 5%;
	top: 30%;
	-webkit-animation: ani2 120s linear alternate infinite;
	animation: ani2 120s linear alternate infinite;
	background-image: linear-gradient(rgba(50,48,48,0.5), rgba(50,48,48,0.9), rgba(50,48,48,0.1), rgba(50,48,48,0.4), rgba(50,48,48,0.9), rgba(50,48,48,0.3));
}

.gradient3 {
	width: 70vw;
	height: 40vh;
	left: 30%;
	top: 0;
	-webkit-animation: ani3 60s linear alternate infinite;
	animation: ani3 60s linear alternate infinite;
	background-image: linear-gradient(rgba(32,32,32,0.7), rgba(32,32,32,0.3), rgba(32,32,32,0.1), rgba(32,32,32,0.7), rgba(32,32,32,1));
}

.gradient4 {
	width: 70vw;
	height: 90vh;
	left: 60%;
	top: 25%;
	-webkit-animation: ani4 140s linear alternate infinite;
	animation: ani4 140s linear alternate infinite;
	background-image: linear-gradient(rgba(71,71,71,0.2), rgba(71,71,71,1.0), rgba(71,71,71,0.7), rgba(71,71,71,1.0), rgba(71,71,71,0.2));
}

.gradient5 {
	width: 80vw;
	height: 80vh;
	left: 10%;
	top: 50%;
	-webkit-animation: ani5 180s linear alternate infinite;
	animation: ani5 180s linear alternate infinite;
	background-image: linear-gradient(rgba(20,20,20,0.1), rgba(20,20,20,0.7), rgba(20,20,20,1.0), rgba(20,20,20,0.7), rgba(20,20,20,0.4));
}

.gradient6 {
	width: 30vw;
	height: 100vh;
	left: 20%;
	top: 0%;
	-webkit-animation: ani6 90s linear alternate infinite;
	animation: ani6 90s linear alternate infinite;
	background-image: linear-gradient(rgba(62,62,62,0.1), rgba(62,62,62,0.3), rgba(62,62,62,0.4), rgba(62,62,62,7.0), rgba(62,62,62,0.2));
}

@-webkit-keyframes ani1 {
	100% { -webkit-transform: skew(360deg, 0deg); }
}

@keyframes ani1 {
	100% { transform: skew(360deg, 0deg); }
}

@-webkit-keyframes ani2 {
	100% { -webkit-transform: skew(180deg, 20deg) scale(1.5, 1.5); }
}

@keyframes ani2 {
	100% { transform: skew(180deg, 20deg) scale(1.5, 1.5); }
}

@-webkit-keyframes ani3 {
	100% { -webkit-transform: skew(-100deg, -40deg) rotate(360deg); }
}

@keyframes ani3 {
	100% { transform: skew(-100deg, -40deg) rotate(360deg); }
}

@-webkit-keyframes ani4 {
	100% { -webkit-transform: skew(0deg, 360deg); }
}

@keyframes ani4 {
	100% { transform: skew(0deg, 360deg); }
}

@-webkit-keyframes ani5 {
	100% { -webkit-transform: skew(-22deg, -247deg) rotate(360deg); }
}

@keyframes ani5 {
	100% { transform: skew(-22deg, -247deg) rotate(360deg); }
}

@-webkit-keyframes ani6 {
	100% { -webkit-transform: skew(180deg, 53deg) rotate(360deg); }
}

@keyframes ani6 {
	100% { transform: skew(180deg, 53deg) rotate(360deg); }
}