body {
    background: rgb(28, 40, 51);
    color: rgb(227, 224, 224); 
}
/*/////////////////////////////////////////////////////////////////
//
// Barre de menu
//
/////////////////////////////////////////////////////////////////*/


.bg-lignt {
    background: #34495E !important;   /* couleur nav-bar ne s'affiche pas */
}
/*////////////////////////////////////////////////////////////////
//
// h1/h2/h3
//
////////////////////////////////////////////////////////////////*/


@import url('https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap');
h1 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300&display=swap');
h2 {
    font-family: 'Manrope', sans-serif;
    margin-top: 15%;
    margin-bottom: 10%;
}
/*////////////////////////////////////////////////////////////////
//
//
//
////////////////////////////////////////////////////////////////*/


.card {
       background-color: #000408 !important;
}

.profil__avatar {
    width: 150px;
    height: 150px;
    border-radius: 6px;

}
/*/////////////////////////////////////////////////////////////////
//
// Informations
//
/////////////////////////////////////////////////////////////////*/


.container {
    margin-top: 100px;
}
/*/////////////////////////////////////////////////////////////////
//
// Table
//
/////////////////////////////////////////////////////////////////*/


/*/////////////////////////////////////////////////////////////////
//
// Calendrier
//
/////////////////////////////////////////////////////////////////*/





/*/////////////////////////////////////////////////////////////////
//
// Caroussel
//
/////////////////////////////////////////////////////////////////*/


.c-item {
    width: 880px !important;
    height: 720px !important;
    background-size: center;
    margin: 650px;
}




/*/////////////////////////////////////////////////////////////////
//
// domino
//
/////////////////////////////////////////////////////////////////*/


.domino {
    width: 90px;
    height: 150px;
    position: relative;
    margin: 100px auto;
    background: linear-gradient(to bottom, #ff0000, #ff6600);
    border: 2px solid #000;
    box-sizing: border-box;
    animation-name: burning;
    animation-duration: 2s;
    animation-iteration-count: infinite;
  }


  /*/////////////////////////////////////////////////////////////////
//
// profil
//
/////////////////////////////////////////////////////////////////*/
  
.contiiner {
      width: 300px;
      height: 400px;
      margin-left: 5px;
}
  
/*/////////////////////////////////////////////////////////////////
//
// accueil
//
/////////////////////////////////////////////////////////////////*/


.container-spt1{
  width: 40px;
  height: 50px;
  border: 2px solid rgb(236, 231, 231);
}



/*/////////////////////////////////////////////////////////////////
//
// trophées
//
/////////////////////////////////////////////////////////////////*/


.trophy {
  overflow: hidden;
}


.trophy img {
  width: 100%;
  height: 300;
  transition: all 2s ease-in-out

}

.trophy:hover img {
transform: scale(2,2);
cursor: pointer;
}

/*/////////////////////////////////////////////////////////////////
//
// messagerie/chat
//
/////////////////////////////////////////////////////////////////*/

.chat-list {
  padding: 0;
  font-size: .8rem;
}

.chat-list li {
  margin-bottom: 10px;
  overflow: auto;
  color: #ffff;
}

.chat-list .chat-img {
  float: left;
  width: 48px;
}

.chat-list .chat-img img {
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  width: 100px;
}

.chat-list .chat-message {
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  background: #5a995a;
  display: inline-block;
  padding: 10px 20px;
  position: relative;
}


/*/////////////////////////////////////////////////////////////////
//
// gallery tableaux
//
/////////////////////////////////////////////////////////////////*/


#tble {
  max-width: 100%;
  margin-left: 6px;
}
.gallery {
   background-color:cornflowerblue;
   padding: 80px 0;
}
.gallery img {
  max-width: 100%;
  cursor: pointer;
}

#gallery-modal .modal-img {
  width: 100%;
}



/*/////////////////////////////////////////////////////////////////
//
// page 404
//
/////////////////////////////////////////////////////////////////*/
@import url('https://fonts.googleapis.com/css2?family=Rubik+Doodle+Shadow&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@600&display=swap');

.error_page  {
  margin: 0;
  padding: 0;
  background-color: rgb(28, 40, 51);
  background-image: url('/images/la_betouniere.jpeg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 900px;
  font-family: Arial, sans-serif;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Conteneur centré verticalement */
.error_page #bckgrnd {
  flex: 1;
  margin-top: -250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Gros texte OUPS */
.error_page #err {
  font-family: 'Rubik Doodle Shadow', serif;
  color: #a31b1b;
  font-size: 150px;
  margin: 0;
}

/* Texte explicatif */
.error_page #err_txt {
  font-family: 'Barlow', sans-serif;
  color: rgb(9, 9, 9);
  font-size: 22px;
  margin-top: 20px;
}

/* Bouton retour */
 .error_page .button {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 24px;
  background: #ff5e57;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  transition: background 0.3s ease;
}

.button:hover {
  background: #e8433f;
}


