html,
body {
	/* position: relative; */
	/* width: 100%; */
	height: 100%;
	/* background-color: rgb(255, 255, 255); */
}

body {
	color: #333;
	margin: 0;
	padding: 8px;
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	height: 100%;
	margin: 0;
	/* overflow: hidden; */
	/* background: linear-gradient(to bottom, #202020, #111119); */
	background-color: rgb(214, 214, 214);
}

a {
	color: rgb(0, 100, 200);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

a:visited {
	color: rgb(0, 80, 160);
}

label {
	display: block;
}

input,
button,
select,
textarea {
	font-family: inherit;
	font-size: inherit;
	-webkit-padding: 0.4em 0;
	padding: 0.4em;
	margin: 0 0 0.5em 0;
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 2px;
}

input:disabled {
	color: #ccc;
}

button {
	color: #333;
	background-color: #f4f4f4;
	outline: none;
}

button:disabled {
	color: #999;
}

button:not(:disabled):active {
	background-color: #ddd;
}

button:focus {
	border-color: #666;
}

.rain {
	position: absolute;
	top: 0;
	left: 5%;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.rain.back-row {
	display: none;
	z-index: -2;
	bottom: 60px;
	opacity: 0.8;
}

.drop {
	position: absolute;
	bottom: 10px;
	width: 25px;
	height: 20px;
	pointer-events: none;
	animation: drop 0.5s linear infinite;
}

@keyframes drop {
	0% {
		transform: translateY(0vh);
	}

	75% {
		transform: translateY(90vh);
	}

	100% {
		transform: translateY(90vh);
	}
}

.stem {
	width: 3px;
	height: 300%;
	margin-left: 7px;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(255, 255, 255, 0.863));
	animation: stem 0.5s linear infinite;
}

@keyframes stem {
	0% {
		opacity: 1;
	}

	65% {
		opacity: 1;
	}

	75% {
		opacity: 0;
	}

	100% {
		opacity: 0;
	}
}

.splat {
	width: 15px;
	height: 10px;
	border-top: 2px dotted rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	opacity: 1;
	transform: scale(0);
	animation: splat 0.5s linear infinite;
	display: none;
}

@keyframes splat {
	0% {
		opacity: 1;
		transform: scale(0);
	}

	80% {
		opacity: 1;
		transform: scale(0);
	}

	90% {
		opacity: 0.5;
		transform: scale(1);
	}

	100% {
		opacity: 0;
		transform: scale(1.5);
	}
}

body.single-toggle .drop {
	display: none;
}

body.single-toggle .drop:nth-child(10) {
	display: block;
}