.divHero {
	background-image: url("../media/webCover800.webp");
  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

@media only screen and (min-width: 800px) {
	.divHero {
		background-image: url("../media/webCover1600.webp");
	}
}

@media only screen and (min-width: 1600px) {
	.divHero {
		background-image: url("../media/webCover3200.webp");
	}
}

.txtSlogan {
	width: 90%;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-family: 'Arial';
	font-size: 7vw;
	text-transform: uppercase;
}

.divSticky {
  position: relative;
}

.divContent{
	position: sticky;
	top: 0;
	background-color: var(--bgVinyl);
	background-image: url("../media/VinylRecord800.webp");
  height: 100vh;
	width: 100%;
	background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
	z-index: 0;
}

@media only screen and (min-width: 800px) {
	.divContent {
		background-image: url("../media/VinylRecord1600.webp");
	}
}

@media only screen and (min-width: 1600px) {
	.divContent {
		background-image: url("../media/VinylRecord3200.webp");
	}
}

.txtIntro {
	position: relative;
	width: 90%;
	margin: auto;
	padding: 40vh 0 400vh 0;
	z-index: 1;
}

