.beautiful-frame {
    border: 5px solid #c9c1fa;
    /* Couleur et épaisseur de la bordure */
    padding: 40px;
    /* Espace intérieur du cadre */
    margin: 50px;
    /* Espace extérieur du cadre */
    border-radius: 15px;
    /* Coins arrondis */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* Ombre portée */
    background-color: #f7dede;
    /* Couleur de fond */
    text-align: justify;
    /* Centrer le texte */
    max-width: 900px;
    line-height: 1.5;
    margin-left: 500px;   
    
}

.beautiful-frame h1 {
    margin-top: 0;
    /* Supprime la marge supérieure */
    color: #b377f8;
    /* Couleur du titre */
}

.beautiful-frame p {
    font-size: 16px;
    /* Taille de la police */
    color: #333;
    /* Couleur du texte */
}
  .blog {
    background-color:#c9c1fa;
    color: white;
    margin-bottom: 20px;
    border: 3px black solid;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.9);
    cursor: crosshair;

  }

  body{
    cursor: url(../Images/divers/chat.png), auto;
  }

  
  .stamps {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 20px 0;
  }
  .slideshow {
    position: relative;
    width: 200px;
    height: 300px;
    overflow: hidden;
  }
  .slideshow img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    animation: slideshow 27s linear infinite;
    border: 2px solid #333;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
  }
  .slideshow img:nth-child(1) { animation-delay: 0s; }
  .slideshow img:nth-child(2) { animation-delay: 3s; }
  .slideshow img:nth-child(3) { animation-delay: 6s; }
  .slideshow img:nth-child(4) { animation-delay: 9s; }
  .slideshow img:nth-child(5) { animation-delay: 12s; }
  .slideshow img:nth-child(6) { animation-delay: 15s; }
  .slideshow img:nth-child(7) { animation-delay: 18s; }
  .slideshow img:nth-child(8) { animation-delay: 21s; }
  .slideshow img:nth-child(9) { animation-delay: 24s; }
  @keyframes slideshow {
    0%, 11% { opacity: 1; }
    14%, 100% { opacity: 0; }
  }


.centered-hr{
  width: 50%;
  margin: 0 auto;
  border: 3px solid blue;   
  margin-bottom: 30px;
  margin-top: 20px;
  
}

.blog-3d {
  position: relative;
  padding: 15px 30px;
  margin-bottom: 20px;
  background: #c9c1fa;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  text-transform: uppercase;
  cursor: pointer;
  transform-style: preserve-3d;
  transform: translateZ(0);
  transition: transform 0.3s;
  box-shadow: 0 5px 0 #9f94fa,
              0 10px 10px rgba(0,0,0,0.2);
}

.blog-3d:hover {
  transform: translateY(2px);
  box-shadow: 0 3px 0 #9f94fa,
              0 6px 6px rgba(0,0,0,0.2);
}

.blog-3d:active {
  transform: translateY(5px);
  box-shadow: 0 0 0 #9f94fa,
              0 0 0 rgba(0,0,0,0.2);
}
