/* Centrage du contenu et disposition en grille */
.container.highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    justify-items: center;
    align-items: center;
    padding: 20px;
}

/* Style des divs pour un meilleur affichage */
.container.highlight div {
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 300px;
}

/* Ligne de séparation */
.container.highlight hr {
    border: 0;
    height: 1px;
    background-color: #ccc;
    width: 100%;
    margin: 10px 0;
}

/* Ajustement des polices et espacements */
.container.highlight div p {
    margin: 10px 0;
    line-height: 1.6;
}

    .super_container {
      width: 100px;
      height: 100px;
      background-color: red;
      margin: 10px;
      animation: move 2s infinite;
    }

    @keyframes move {
      0% { transform: translateX(0); }
      50% { transform: translateX(100px); }
      100% { transform: translateX(0); }
    }
 	.super_container {
			  width: 100px;
			  height: 100px;
			  background-color: red;
			  margin: 10px;
			  position: relative;
			}
			
			