body{
  padding: 0;
  margin: 0;

}

/* navbar color & hover */
.navbar-nav {
    --bs-nav-link-color: #333;
    --bs-nav-link-hover-color: #facf0f;
}
.navbar{
    --bs-navbar-brand-color: #333;
    --bs-navbar-brand-hover-color: #facf0f;
}

/* mounse animation */
.mouse {
    width: 30px;
    height: 50px;
    border: 3px solid #333;
    border-radius: 60px;
    position: relative;
  }
  .mouse::before {
    content: "";
    width: 7px;
    height: 7px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    border-radius: 50%;
    opacity: 1;
    animation: wheel 2s infinite;
    -webkit-animation: wheel 2s infinite;
  }
  
  @keyframes wheel {
    to {
      opacity: 0;
      top: 30px;
    }
  }
  @-webkit-keyframes wheel {
    to {
      opacity: 0;
      top: 30px;
    }
  }

  /* Banner portion */
  #banner {
    background: green url("../img/banner-bg.jpg") no-repeat center;
    height: 100vh;
  }
  #banner .container {
    margin: 0;
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
