body {
	background-color: #050905;
	color: #00ff00;
	font-family: "Courier New", Courier, monospace;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 95vh;
	margin: 0;
	overflow: scroll;
	position: relative;
	padding: 20px;
}

.container {
	text-align: center;
	border: 1px solid #00ff00;
	padding: 20px;
	width: 50%;
	max-width: 600px;
	background-color: #000000;
	margin: auto;
	box-sizing: border-box;
	position: relative;
	z-index: 1;
	box-shadow: 0 0 60px #00ff00;
}

textarea {
	width: 100%;
	background-color: #000;
	color: #00ff00;
	border: 1px solid #00ff00;
	padding: 10px;
	font-family: "Courier New", Courier, monospace;
	resize: vertical;
	box-sizing: border-box;
	margin: 0 auto;
	display: block;
	text-shadow: 0 0 3px #00ff00;
	transition: background-color 0.3s;
}

textarea:focus {
	background-color: #11ff11;
	color: #000;
	outline: none;
	box-shadow: 0 0 30px #00ff00;
}

input[type="submit"] {
	background-color: #000;
	color: #00ff00;
	border: 1px solid #00ff00;
	padding: 10px 20px;
	cursor: pointer;
	font-family: "Courier New", Courier, monospace;
	margin-top: 10px;
	box-shadow: 0 0 5px #00ff00;
	text-shadow: 0 0 3px #00ff00;
	transition: background-color 0.3s, box-shadow 0.3s;
}

input[type="submit"]:hover {
	background-color: #111;
	box-shadow: 0 0 20px #00ff00;
}

.message p {
	font-size: 17px;
	text-shadow: 0 0 4px #00ff00;
}

h1, h2 {
	font-size: 24px;
	color: #00ff00;
	text-shadow: 0 0 5px #00ff00;
}

tresc {
	font-size: 14px;
}

a {
	color: #00ff00;
	text-decoration: none;
	padding: 5px;
	display: inline-block;
	transition: color 0.3s, background-color 0.3s;
}

a:hover {
	color: #000;
	background-color: #00ff00;
}

.github-button {
	background-color: #00ff00;
	color: #000;
	border: 1px solid #00ff00;
	padding: 10px 20px;
	width: 130px;
	cursor: pointer;
	font-family: "Courier New", Courier, monospace;
	margin-top: 20px;
	display: inline-block;
	text-decoration: none;
	transition: background-color 0.3s, color 0.3s;
	box-shadow: 0 0 5px #00ff00;
	text-shadow: 0 0 3px #00ff00;
	transition: background-color 0.3s, box-shadow 0.3s;
}

.github-button:hover {
	background-color: #111;
	color: #00ff00;
	box-shadow: 0 0 20px #00ff00;
}

.coffee-button {
	background-color: #00ff00;
	color: #000;
	border: 1px solid #00ff00;
	padding: 10px 20px;
	width: 130px;
	cursor: pointer;
	font-family: "Courier New", Courier, monospace;
	margin-top: 20px;      
	display: inline-block;
	text-decoration: none;
	transition: background-color 0.3s, color 0.3s;
	box-shadow: 0 0 5px #00ff00;
	text-shadow: 0 0 3px #00ff00;    
	transition: background-color 0.3s, box-shadow 0.3s;
}

.coffee-button:hover {
	background-color: #111;
	color: #ffda70;
	border: 1px solid #ffda70;
	box-shadow: 0 0 20px #ffda70;
	text-shadow: 0 0 3px #ffda70;
}

.cursor-trail {
	position: absolute;
	pointer-events: none;
	border-radius: 50%;
	background: rgba(0, 255, 0, 0.3);
	width: 10px;
	height: 10px;
	transform: translate(-50%, -50%);
	box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
	transition: background 0.2s, box-shadow 0.2s;
}

.cursor-trail-smoke {
	position: absolute;
	pointer-events: none;
	border-radius: 50%;
	background: rgba(0, 255, 0, 0.1);
	width: 9px;
	height: 9px;
	transform: translate(-50%, -50%);
	box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
	opacity: 0.9;
	transition: opacity 0.9s, transform 0.9s;
}

.click-effect {
	position: absolute;
	border-radius: 50%;
	background: rgba(0, 255, 0, 0.2);
	width: 50px;
	height: 50px;
	pointer-events: none;
	transform: translate(-50%, -50%);
	transition: width 0.4s, height 0.4s, opacity 0.7s;
}

.click-effect.animate {
	width: 55px;
	height: 55px;
}

::selection {
	background: #aaffaa;
	color: #009900;
}

::-moz-selection {
	background: #aaffaa;
	color: #009900;
	box-shadow: 0 0 60px #bbffbb;
}

::-webkit-scrollbar {
	width: 12px;
	height: 12px;
}

::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment  {
	height: 12px;
	background-color: transparent;
}

::-webkit-scrollbar-track-piece  {
	background-color: #004400;
	-webkit-border-radius: 16px;
}

::-webkit-scrollbar-thumb:vertical {
height: 10px;
background-color: #00ff00;
border: 1px solid #004400;
-webkit-border-radius: 16px;
}

::-webkit-scrollbar-thumb:horizontal {
	height: 10px;
	background-color: #00ff00;
	border: 1px solid #004400;
	-webkit-border-radius: 16px;
}

input[type="email"] {
	width: 100%;
	background-color: #000;
	color: #00ff00;
	border: 1px solid #00ff00;
	padding: 10px;
	font-family: "Courier New", Courier, monospace;
	resize: vertical;
	box-sizing: border-box;
	margin: 0 auto;
	display: block;
	text-shadow: 0 0 3px #00ff00;
	transition: background-color 0.3s;            
}

input[type="email"]:focus {
	background-color: #11ff11;
	color: #000;
	outline: none;
	box-shadow: 0 0 30px #00ff00;    
}


@media (max-width: 900px) {

	.container {
		width: 90%;
		padding: 15px;
	}
	body {
		overflow: scroll;
	}
	h2 {
		font-size: 16px;
	}

	h1 {
		font-size: 20px;
	}

	tresc {
		font-size: 12px;
	}

	.message p {
		font-size: 12px;
	}

	textarea {
		font-size: 13px;
	}

	input[type="submit"], .github-button {
		padding: 8px 16px;
		font-size: 12px;
	}


	.coffee-button {
		padding: 8px 16px;
		font-size: 12px;
	}


	.click-effect {
		width: 40px;
		height: 40px;
	}

	input[type="email"] {
		font-size: 13px;
	}

}

@media (max-width: 600px) {

	.container {
		width: 100%;
		padding: 10px;
	}
	body {
		overflow: scroll;
	}
	h2 {
		font-size: 14px;
	}

	h1 {
		font-size: 20px;
	}

	tresc {
		font-size: 10px;
	}

	.message p {
		font-size: 10px;
	}

	textarea {
		font-size: 11px;
	}

	input[type="submit"], .github-button, .coffee-button {
		padding: 6px 12px;
		font-size: 10px;
	}


	.click-effect {
		width: 35px;
		height: 35px;
	}

	input[type="email"] {
		font-size: 12px;
	}

}


@media (max-width: 1400px), (max-height: 800px) {

	.container {
		width: 70%;
		padding: 20px;
	}
	body {
		overflow: scroll;
	}
	h2 {
		font-size: 18px;
	}

	h1 {
		font-size: 22px;
	}

	tresc {
		font-size: 14px;
	}

	.message p {
		font-size: 14px;
	}

	textarea {
		font-size: 16px;
	}

	input[type="submit"], .github-button, .coffee-button {
		padding: 10px 20px;
		font-size: 14px;
	}

	.click-effect {
		width: 45px;
		height: 45px;
	}

	input[type="email"] {
		font-size: 16px;
	}

}


@media (max-width: 1200px), (max-height: 600px) {

	.container {
		width: 85%;
		padding: 15px;
	}
	body {
		overflow: scroll;
	}
	h2 {
		font-size: 16px;
	}

	h1 {
		font-size: 20px;
	}

	tresc {
		font-size: 12px;
	}

	.message p {
		font-size: 12px;
	}

	textarea {
		font-size: 14px;
	}

	input[type="submit"], .github-button, .coffee-button {
		padding: 8px 16px;
		font-size: 12px;
	}

	.click-effect {
		width: 40px;
		height: 40px;
	}

	input[type="email"] {
		font-size: 14px;
	}

}
