h1{
color:#777;
font-size:52px;
font-weight:lighter;
margin-top: 0;
margin-bottom: 0;
}
h2{
color:#999;
font-size:32px;
font-weight:lighter;
margin-top: 0;
margin-bottom: 0;
}
h3{
color:#D6C29E;
font-size:1rem;
font-weight:bold;
margin-top: 0;
margin-bottom: 0;
}
#bandeau-bas {
    position: fixed; /* Position fixe pour que le bandeau reste visible en bas de la page */
    bottom: 0; /* Le placer en bas de la fenêtre du navigateur */
    left: 0; /* Le placer tout à gauche de la fenêtre */
    width: 100%; /* Prendre toute la largeur de la fenêtre */
    height: 60px; /* Hauteur de 100 pixels */
    background-color: black; /* Fond noir */
    color: white; /* Texte blanc */
    text-align: center; /* Centrer le texte à l'intérieur du bandeau */
    line-height: 100px; /* Centrer verticalement le texte */
    z-index: 999; /* S'assurer que le bandeau reste au-dessus du contenu de la page */
}


/* Configuration du body pour utiliser grid */
html, body {
            margin: 0; /* Retirer les marges par défaut */
            padding: 0;
            height: 100%; /* Minimum de 100% de la hauteur de la fenêtre */
            display: flex;
            flex-direction: column;
}
        
/* Contenu principal */
.content {
    flex: 1; /* Prend toute la place restante dans la page */
}

/* Footer, toujours en bas */
.footer {
            background-color: black;
            color: white;
            height: 50px;
            display: flex;
            justify-content: center;
            align-items: center;
}
.btn {
    position: relative;
    transition: top 0.1s ease-in-out;
    cursor: pointer;
}

.btn:hover {
    top: 1px;
}

@media (max-width: 767.99px) {
	#champagne-block {
    	border-radius: 0 !important;
    }
}
