/* ... Estilos anteriores ... */

.content {
  padding: 20px;
  flex-grow: 1; /* El contenido crecerá para llenar el espacio restante */
  display: flex;
  flex-direction: column; /* Colocar contenido en columna */
  justify-content: center; /* Centrar contenido verticalmente */
  align-items: center; /* Centrar contenido horizontalmente */
}

.server-info {
  width: 100%;
  text-align: center;
  margin-top: 20px;
  padding: 6px 12px;
  background-color: #f8f9fa;
  border-radius: 4px;
  border-left: 3px solid #2a3f54;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.server-info p {
  color: #2a3f54;
  font-size: 0.9em;
  font-weight: 500;
  margin: 0;
}

.welcome-content {
  text-align: center;
  margin-bottom: 20px;
}

.description-content {
  text-align: justify;
}

/* Estilos responsivos */
@media screen and (max-width: 768px) {
  /* ... Estilos responsivos anteriores ... */

  .content {
      align-items: flex-start; /* Alinear contenido arriba en dispositivos pequeños */
  }
}