* 
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif !important;
    min-height: 100vh;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #D5D5D5;
}

.container {
    display: block;
    justify-content: center;
    align-items: center;
}

.box {
    width: 500px;
    height: 600px;
    position: relative;
    background-color: #000;
    border-radius: 20px;
    overflow: hidden;
    display: block;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.box::before {
    content: '';
    position: absolute;
    top:-300px;
    Left:125px;
    width: 250px;
    height: 180%;
    background-color: #A8020B;
    border-radius: 20px;
    box-shadow: 0 0 20px #111;
    animation: animate 4s linear infinite;
}

.box::after {
    content: '';
    position: absolute;
    inset: 2px;
    background-color: #111;
    border-radius: 15px;
    border: 4px solid #25252b;
}

.circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
   
}

h2 {
    position: relative;
    top:220px;
    text-align: center;
    color: #2FDBE1; /* Assurez-vous que la couleur du texte est visible */
    z-index: 1; /* Assurez-vous que le texte est au-dessus de l'arrière-plan */
    padding: 10px;
    letter-spacing: 5px;
    font-size: 2em;
}

p {
    position: absolute;
    color: #D5D5D5; /* Assurez-vous que la couleur du texte est visible */
    z-index: 2; /* Assurez-vous que le texte est au-dessus de l'arrière-plan */
    top:300px;
    padding-left: 20px;
    padding-right: 20px;
    text-align:left;
}

@keyframes animate {
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }   
}
.images {
    top:400px;
    left:100px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
    z-index: 1;
  }
 
  
  .centered-image {
    width: 100px;
    height: 100px;
    border-radius: 10%;
    object-fit: cover;
    margin: 10px;
    max-width: 100px;
  }