@import url("https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900");

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Poppins", sans-serif;
}

#pride-rain {
	position: fixed;
	inset: 0;
	z-index: -1;        /* render underneath everything */
	pointer-events: none;
}

body {
	display: flex;
	background: #000;
	min-height: 100vh;
	align-items: center;
	justify-content: center;
}

.it-stuff {
    color: #fff;
	font-size: 1em;
	margin-left: 10vw;
}

.industrial-fishing {
	font-size: 3em;
	position: relative;
}

@media screen and (max-width:1300px) {
	.industrial-fishing {
		font-size: 2em;
		position: relative;
	}
	.it-stuff {
		color: #fff;
		font-size: 0.7em;
		margin-left: 5vw;
	}
}

.industrial-fishing-outline {
	color: transparent;
	-webkit-text-stroke: 2px #007bff;
	position: absolute;
}

@media screen and (max-width:720px) {
	.industrial-fishing {
		font-size: 1em;
		position: relative;
		margin-top: 10vh;
	}

	.industrial-fishing-outline {
		color: transparent;
		-webkit-text-stroke: 1px #007bff;
		position: absolute;
	}
	.it-stuff {
		color: #fff;
		font-size: 0.5em;
		margin-left: 3vw;
	}
}

.industrial-fishing-wave {
	color: #007bff;
	animation: animate 4s ease-in-out infinite;
	position: relative;
}

@keyframes animate {
	0%,
	100% {
		clip-path: polygon(
			0% 45%,
			16% 44%,
			33% 50%,
			54% 60%,
			70% 61%,
			84% 59%,
			100% 52%,
			100% 100%,
			0% 100%
		);
	}

	50% {
		clip-path: polygon(
			0% 60%,
			15% 65%,
			34% 66%,
			51% 62%,
			67% 50%,
			84% 45%,
			100% 46%,
			100% 100%,
			0% 100%
		);
	}
}
