html{
    background-image: url(../media/background.jpg);
    background-size:cover;
    /* background-position: center; */
    /* background-repeat: no-repeat; */
    /* background-blend-mode: color-burn; */
}
.quicksearch{
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--secondary-color);
    padding: 0.5em 2em;
    gap: 0.2em;
}
.head{
    font-weight:bold;
    font-family: var(--primary-font) ;
}
.searches{
    
    flex-wrap: wrap;
    display: flex;
    gap: 1em;
}

.searches button{
    
    /* border-right: 1px solid var(--secondary-color); */

    color: var(--secondary-color);
}
.searches a::after{
    content: "    |";
    
}


/* Search Bar CSS */
.searchbar {
    height: 3.5em;
    margin-top: .5em;
    /* position: relative; */
    /* padding: auto; */
    display: flex;
    /* gap: -4em; */
    /* flex-direction: row; */
    align-items: center;
    justify-content: center;
}

.searchbar input[type="text"] {
    background-color: var(--secondary-color);
    width: 80%;  
    height: 3em;
    padding: 0 2em;
    /* flex: 1; */
    border-radius: 5px;
    font-weight: bold;
}

.searchbar input[type="submit"] {
    /* position: absolute; */
    margin-left: -15.5em;
    cursor: pointer;;
    width: 15em;
    height: 2.5em;
    background-color: var(--hard-color);
    border-radius: 5px;
    color: var(--secondary-color);
    /* transform: translateX(220%); */

}

.bname a:visited{
    text-decoration: none;
    color: #fff;
}
.brands{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
    overflow: hidden;

}
.heading{
    font-weight:bold;
    font-size: 20pt;
    font-family: var(--primary-font) ;
    color: var(--secondary-color);
}
.brand {
    display: flex;
    overflow: hidden;
    width: 100%;
  }

  .brand img {
    width: 75em;
    animation: scrollLeft 15s linear infinite;
  }

  .brand img:first-child {
    animation-delay: 0s;
  }

  .brand img:last-child {
    animation-delay: 0s; /* Adjust the delay to match the animation duration */
  }

  @keyframes scrollLeft {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  .footer{
    display: flex;
    overflow: hidden;
    width: 100%;
    box-shadow: var(--box-shadow);
    backdrop-filter: var(--backdrop-filter);
    background-color: var(--primary-color);
    border-radius: 4px;
    margin: 0.2em 1em;
    align-items: center;
    color: #fff;
    text-align: center;

  }
  
  .footer_text{
    font-size: 10pt;
    font-family: var(--primary-font) ;
    color: var(--secondary-color);
    align-self: center;
}