.home {
	background-color: black;
	height: 10000px;
	padding: 0;
	background-image: url('/res/hero1280.avif');
	background-size: cover;
	background-attachment: fixed;
}

.container {
	width: 100%;
	height: fit-content;
	margin-top: calc(-6px - 5rem);
	color: silver;
	position: relative;
	z-index: 0;
}

.greetcon {
	width: 100%;
	height: 100vh;
	display: grid;
	place-items: center;
	position: relative;
	margin: 0;
	z-index: 1;

}

.pcontainer {
	position: relative;
	background-color: black;
	width: 100%;
	min-height: 3000px;
	z-index: 1;
}

.greeting {
	background-color: rgb(0 0 0 / 0.3);
	backdrop-filter: blur(4px);
	width: 50%;
	border-radius: 20px;
	position: fixed;

}

.gtxt {
	text-align: center;
	padding: 1rem;
}

.gquote {
	background-image: radial-gradient(var(--red-main), darkred);
	display: grid;
	place-items: center;
	align-self: center;
	justify-self: center;
	padding: 15px;
	border-radius: 30px;
	color: white;
	margin-bottom: 1rem;
	place-items: center;
	z-index: 1;
	position: relative;
}

.gquote:hover {
	background-image: radial-gradient(maroon, darkred);
	color: darkgray;
}

.fadein, .acon, .ccon, .bcon, .rcon {
	position: relative;
	z-index: 2
}

.fadein {
	background-image: linear-gradient(rgb(0 0 0 / 0) , rgb(0 0 0 / 1));
	width: 100%;
	height: 100vh;
}

.hcontainer {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}

.acon {
	height: fit-content;
	width: 100%;
	background-color: black;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: max-content max-content max-content;
	gap: 40px;
	padding: 20px;
	margin: 0 auto;
	box-sizing: border-box;

}

.acon h3 {
	grid-column: span 2;
	place-self: center;
}

.acon img {
	width: 100%;
}	

.hbutton {
	grid-column: 2 span;
	background-color: rgb(211 211 211 / 0.1);
	text-align: center;
	border-radius: 5px;
	width: fit-content;
	margin: 0 auto;
	padding: 0 10px;
	line-height: 3rem;

}

.hbutton:hover {
	background-color: var(--red-main);
}
