* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html, body {
	height: 100%;
	width: 100%;
	font-family: "Times New Roman", Times, serif;
	font-size: 12px;
	position: relative;
	overflow-x: hidden;
	color: whitesmoke;
	overflow-x: hidden;
}

.background-wrap {
	position: fixed;
	top: 0; 
	left: 0;
	width: 100%;
	height: 100%;

	overflow: hidden;
	z-index: -1;
	pointer-events: none;
}

.background {
	position: absolute;
	top: 0; 
	left: 0; 
	width: 100%;
	height: 100%;
	filter: blur(2px);
	

	
	background-image: url('../img/waterfall.webp');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: #222;
	
	
	transform: scale(1.1);
	will-change: transform;

	opacity: 0;
	animation: fadeIn 1.2s ease-in-out forwards;
}

@keyframes fadeIn {
	to { opacity: 1; }
}


.background::after {
	background-color: rgba(0, 0, 0, 0.4);
	
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	
	content: "";
	position: fixed;

	z-index: -1;
}



.bg-cristal {
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
	z-index: 1;
}

.bg-wrap {
	position: fixed;
	inset: 0;
	z-index: -1;
	overflow: hidden;
}


.bg-img {
	position: absolute;
	top: -5%;
	left: -5%;
	width: 110%;
	height: 110%;
	object-fit: cover;

	filter: blur(8px);
	transform: scale(1.05);

	opacity: 0;
	animation: fadeIn 1.2s ease-in-out forwards;
}
