body {
	font-family: Arial, sans-serif;
	font-family: 'Salsa', sans-serif;
	background-size: 100% 100%;
	background-color: #202226;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	color: #333;
}

.spinner {
	border: 8px solid rgba(255, 255, 255, 0.9);
	border-top: 8px solid #fff;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	animation: spin 1s linear infinite;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

@keyframes spin {
	0% {
		transform: translate(-50%, -50%) rotate(0deg);
	}

	100% {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

.container {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	padding: 40px;
	border-radius: 15px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	text-align: center;
	visibility: hidden;
}

h1 {
	font-size: 3em;
	margin: 0.5em 0;
	color: #fff;
	color: #16a085;
	text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.7);
	letter-spacing: 3px;
}

h2 {
	font-size: 1.5em;
	margin: 0.5em 0;
	color: #fff;
	color: #16a085;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.button {
	display: inline-block;
	margin-top: 20px;
	padding: 10px 20px;
	font-size: 1em;
	color: #fff;
	color: #000;
	background-color: #16a085;
	border: none;
	border-radius: 5px;
	text-decoration: none;
	transition: background-color 0.3s ease;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.button:hover {
	background-color: #13856b;
}

.area {
	width: 100%;
	height: 100vh;
}

.circles {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	margin: 0;
	padding: 0;
}

.circles li {
	position: absolute;
	display: block;
	list-style: none;
	width: 20px;
	height: 20px;
	background: rgba(255, 255, 255, 0.2);
	animation: animate 25s linear infinite;
	bottom: -150px;
}

.circles li:nth-child(1) {
	left: 25%;
	width: 80px;
	height: 80px;
	animation-delay: 0s;
}

.circles li:nth-child(2) {
	left: 10%;
	width: 20px;
	height: 20px;
	animation-delay: 2s;
	animation-duration: 12s;
}

.circles li:nth-child(3) {
	left: 70%;
	width: 20px;
	height: 20px;
	animation-delay: 4s;
}

.circles li:nth-child(4) {
	left: 40%;
	width: 60px;
	height: 60px;
	animation-delay: 0s;
	animation-duration: 18s;
}

.circles li:nth-child(5) {
	left: 65%;
	width: 20px;
	height: 20px;
	animation-delay: 0s;
}

.circles li:nth-child(6) {
	left: 75%;
	width: 110px;
	height: 110px;
	animation-delay: 3s;
}

.circles li:nth-child(7) {
	left: 35%;
	width: 150px;
	height: 150px;
	animation-delay: 7s;
}

.circles li:nth-child(8) {
	left: 50%;
	width: 25px;
	height: 25px;
	animation-delay: 15s;
	animation-duration: 45s;
}

.circles li:nth-child(9) {
	left: 20%;
	width: 15px;
	height: 15px;
	animation-delay: 2s;
	animation-duration: 35s;
}

.circles li:nth-child(10) {
	left: 85%;
	width: 150px;
	height: 150px;
	animation-delay: 0s;
	animation-duration: 11s;
}

@keyframes animate {
	0% {
		transform: translateY(0) rotate(0deg);
		opacity: 1;
		border-radius: 0;
	}

	100% {
		transform: translateY(-1000px) rotate(720deg);
		opacity: 0;
		border-radius: 50%;
	}
}

@import url(https://fonts.googleapis.com/css?family=Finger+Paint);

body {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

span {
	display: inline-block;
	-webkit-animation: smoky 5s 3s both;
	animation: smoky 5s 3s both;
}

span:nth-child(even) {
	-webkit-animation-name: smoky-mirror;
	animation-name: smoky-mirror;
}

@-webkit-keyframes smoky {
	60% {
		text-shadow: 0 0 40px whitesmoke;
	}

	to {
		transform: translate3d(15rem, -8rem, 0) rotate(-40deg) skewX(70deg) scale(1.5);
		text-shadow: 0 0 20px whitesmoke;
		opacity: 0;
	}

	100% {
		transform: translate3d(0, 0, 0) rotate(0deg) skewX(0deg) scale(1);
		text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.7);
		opacity: 1;
	}
}

@keyframes smoky {
	60% {
		text-shadow: 0 0 40px whitesmoke;
	}

	to {
		transform: translate3d(15rem, -8rem, 0) rotate(-40deg) skewX(70deg) scale(1.5);
		text-shadow: 0 0 20px whitesmoke;
		opacity: 0;
	}

	100% {
		transform: translate3d(0, 0, 0) rotate(0deg) skewX(0deg) scale(1);
		text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.7);
		opacity: 1;
	}
}

@-webkit-keyframes smoky-mirror {
	60% {
		text-shadow: 0 0 40px whitesmoke;
	}

	to {
		transform: translate3d(18rem, -8rem, 0) rotate(-40deg) skewX(-70deg) scale(2);
		text-shadow: 0 0 20px whitesmoke;
		opacity: 0;
	}

	100% {
		transform: translate3d(0, 0, 0) rotate(0deg) skewX(0deg) scale(1);
		text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.7);
		opacity: 1;
	}
}

@keyframes smoky-mirror {
	60% {
		text-shadow: 0 0 40px whitesmoke;
	}

	to {
		transform: translate3d(18rem, -8rem, 0) rotate(-40deg) skewX(-70deg) scale(2);
		text-shadow: 0 0 20px whitesmoke;
		opacity: 0;
	}

	100% {
		transform: translate3d(0, 0, 0) rotate(0deg) skewX(0deg) scale(1);
		text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.7);
		opacity: 1;
	}
}

span:nth-of-type(1) {
	-webkit-animation-delay: 3.1s;
	animation-delay: 3.1s;
}

span:nth-of-type(2) {
	-webkit-animation-delay: 3.2s;
	animation-delay: 3.2s;
}

span:nth-of-type(3) {
	-webkit-animation-delay: 3.3s;
	animation-delay: 3.3s;
}

span:nth-of-type(4) {
	-webkit-animation-delay: 3.4s;
	animation-delay: 3.4s;
}

span:nth-of-type(5) {
	-webkit-animation-delay: 3.5s;
	animation-delay: 3.5s;
}

span:nth-of-type(6) {
	-webkit-animation-delay: 3.6s;
	animation-delay: 3.6s;
}

span:nth-of-type(7) {
	-webkit-animation-delay: 3.7s;
	animation-delay: 3.7s;
}

span:nth-of-type(8) {
	-webkit-animation-delay: 3.8s;
	animation-delay: 3.8s;
}

span:nth-of-type(9) {
	-webkit-animation-delay: 3.9s;
	animation-delay: 3.9s;
}

span:nth-of-type(10) {
	-webkit-animation-delay: 4s;
	animation-delay: 4s;
}

span:nth-of-type(11) {
	-webkit-animation-delay: 4.1s;
	animation-delay: 4.1s;
}

span:nth-of-type(12) {
	-webkit-animation-delay: 4.2s;
	animation-delay: 4.2s;
}

span:nth-of-type(13) {
	-webkit-animation-delay: 4.3s;
	animation-delay: 4.3s;
}

span:nth-of-type(14) {
	-webkit-animation-delay: 4.4s;
	animation-delay: 4.4s;
}

span:nth-of-type(15) {
	-webkit-animation-delay: 4.5s;
	animation-delay: 4.5s;
}

span:nth-of-type(16) {
	-webkit-animation-delay: 4.6s;
	animation-delay: 4.6s;
}

span:nth-of-type(17) {
	-webkit-animation-delay: 4.7s;
	animation-delay: 4.7s;
}

span:nth-of-type(18) {
	-webkit-animation-delay: 4.8s;
	animation-delay: 4.8s;
}

span:nth-of-type(19) {
	-webkit-animation-delay: 4.9s;
	animation-delay: 4.9s;
}

span:nth-of-type(20) {
	-webkit-animation-delay: 5s;
	animation-delay: 5s;
}

span:nth-of-type(21) {
	-webkit-animation-delay: 5.1s;
	animation-delay: 5.1s;
}

.icon-button {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: #13856b;
	border: none;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.icon-button svg {
	fill: #fff;
}

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	display: none;
	justify-content: center;
	align-items: center;
}

.overlay-content {
	position: relative;
	background-color: #fff;
	padding: 20px;
	border-radius: 8px;
	text-align: center;
	overflow: hidden;
	scroll-behavior: smooth;
}

.overlay-content svg {
	display: block;
	margin: 0 auto;
}

.close {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 24px;
	cursor: pointer;
}

#zoom-image {
	transition: transform 0.25s ease;
	max-width: 100%;
	max-height: 100%;
	cursor: zoom-in;
}
