/*
COPYRIGHT MONSTERA.IN
v2 2025-10-31
*/
body {
	position: relative;
	height: 100vh;
	margin: 0;
	padding: 0;
	background-color: #fff6d8;
	overflow: hidden;
	color: darkred;
	font-family: monospace;
}
#mainbox {
	position: absolute;
	top: 60%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}
.img-wrapper {
	display: inline-block;
	width: 80%;
	position: relative;
	overflow: hidden;
}

.img-wrapper::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(45deg,
		#2d5016,
		#4a7c3c,
		#6b8e23,
		#8fbc8f,
		#556b2f,
		#3cb371,
		#2d5016);
	background-size: 400% 400%;
	animation: dreamyGradient 15s ease infinite;
	filter: blur(100px);
	z-index: 0;
    opacity: 0.8;
}

img {
	display: block;
	width: 100%;
	z-index: 1;
	transition: opacity 0.0s ease;
	border: none;
	outline: none;
	-webkit-user-drag: none;
	image-rendering: -webkit-optimize-contrast;
	backface-visibility: hidden;
}

.img-default {
	position: relative;
	opacity: 1;
}

.img-hover {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}

.img-wrapper:hover .img-default {
	opacity: 0;
}

.img-wrapper:hover .img-hover {
	opacity: 1;
}

@keyframes dreamyGradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
#linkbox {
	display: flex;
	justify-content: space-between;
	width: 60%; /* Or any desired width */
	margin-left: auto;
	margin-right: auto;
	margin-top: 4rem;
	margin-bottom: 8rem;
}
#linkbox * {
	flex: 1;
	text-align: center; /* If you want the text centered within each span */
}
a {
	text-decoration: underline;
	text-decoration-style: dotted;
	color: inherit;
}
a:hover {
	text-decoration-style: solid;
}
@media only screen and (max-width: 700px) {
	.img-wrapper {
		width: 100%;
	}
	#linkbox {
		width: 100%;
		flex-direction: column;
		margin-top: 2rem;
		margin-bottom: 4rem;
		gap: 1rem;
	}
	#mainbox {
		width: 80%;
        top: 40%;
	}
}