*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Navbar */
  nav{
    font-family: 'Poppins', sans-serif;
  }
  
  .navbar-brand img{
    width: 50px;
  }
  
  .nav-item a{
    color: #65069F;
  }
  
  .nav-item a:hover{
    color: #65069F;
  }
  
  .navbar-nav .active{
    border-bottom: 2px solid #65069F;
    color: #65069F !important;
  }
  
  .nav-item .dropdown-toggle{
    color: #65069F !important;
  }
  
  
  /* text api */
  .txt-api{
    font-family: 'Poppins', sans-serif;
  }
  
  .button button{
    width: 120px;
    height: 30px;
    background-color: #FFF;
    border-radius: 5px;
    border: 2px solid #65069F;
    color: #65069F;
  }
  
  /* box */
  .box-api{
    border: 1px solid #979797;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 3px 3px 10px 3px #979797;
  }
  
  .form-select{
    font-family: 'Poppins', sans-serif;
    border: 1px solid #9c9c9c;
  }
  
  .form-select:focus {
    border-color: #65069F;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(115, 3, 219, 0.694);
  }
  
  /* footer */
  footer{
    background-color: #65069F;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    margin-top: 40px;
  }
  
  .img-footer{
    display: flex;
    justify-content: center;
    gap: 40px;
    padding-top: 40px;
  }
  
  .txt-footer p{
    font-size: 17px;
  }
  
  .txt-footer h4{
    font-size: 16px;
  }
  
  .img-footer img{
    width: 40px;
  }
  
  @media (min-width: 360px) and (max-width: 768px) {
    .txt-footer p{
      font-size: 15px;
    }
    .txt-footer h4{
      font-size: 14px;
    }
  }