* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    /* background-color: black; */
  }
  
  .navbar{
    color: white;
    background-color: black;
  }

  .nav-item a{
    color: white;
  }

  .secndpg{
    width: 100%;
    height: 40vh;
    display: flex;
    justify-content: center;
  }

  .secndpg p{
    width: 50%;
    height:100%;
    font-size: 30px;
    color: white;
    text-align: center;
  }

  .furniture2{
    text-align: center;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  margin-top: -5%;
  }

  .bannerimg1 {
    width: 100vw;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: fill;
    height: 100px;
    position: relative;
    animation-name: bannerslide;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
  }
  
  
  .bannerimg2 {
    width: 100vw;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: fill;
    height: 100px;
    position: relative;
    animation-name: bannerslide;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
  }
  @media(max-width:800px){
    .bannerimg1 {
      width: auto;
      background-repeat: no-repeat;
      background-size: cover;
      object-fit: fill;
      height: 100px;
      position: relative;
      animation-name: bannerslide;
      animation-duration: 10s;
      animation-delay: 1s;
      animation-iteration-count: infinite;
      animation-timing-function: ease-in-out;
    }
    
    
    .bannerimg2 {
      width: auto;
      background-repeat: no-repeat;
      background-size: cover;
      object-fit: fill;
      height: 100px;
      position: relative;
      animation-name: bannerslide;
      animation-duration: 10s;
      animation-delay: 1s;
      animation-iteration-count: infinite;
      animation-timing-function: ease-in-out;
    }
  }