              
.header-text{
    margin-left: 15px;
    
  }
  .header-content {
      display: flex;
      justify-content:center;
      align-items: center;
  }
  .header-text h3{
      font-size: 1.25rem; /* Mayor altura de letra */
      margin: 0;
      color:white;
  }
  .header-text p {
      font-size: 0.9rem;
      color: white;
      margin:0px;
  }
 

        body {
            max-width: 80%;
            margin: auto;
        }

        @media (max-width: 768px) {
            body {
                max-width: 100%;
            }
        }

        /* Estilo para cambiar el color del icono de hamburguesa */
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%288, 120, 214, 1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
        }
        
        /* Cambiar color de h2 a rojo */
        h2 {
            color: red;
        }

        /* Cambiar color de hr a rojo */
        hr {
            border-color: red;
        }
 
