/* Estilos base para centrar el contenido de mensajes */


.entry-content{
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.03);
  font-family: Arial, sans-serif;
}

/* Títulos */
.entry-content h2,
.entry-content h3 {
  text-align: center;
  color: #333;
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 600px) {
  .entry-content {
    padding: 15px;
  }

}