/* ---------- PAGE D'ACCUEIL ---------- */
.section-accueil {
  min-height: 100vh;
  padding-top: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('../images/fond.jpg') center/cover no-repeat; /* plus de gradient */
  color: white;
}


.section-accueil p{
	margin-bottom:2rem;
	}
.player{
	max-width:420px;
	margin:auto;
	}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
	
  .section-accueil{
  background:linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(255,253,248,0.4)), url('../images/fond-mobile.jpg') center/cover no-repeat;
	}
}