*{
    padding:0px;
    margin: 0px;
    box-sizing: border-box;
}
:root{
  --background-1: rgb(248, 250, 250);
  --background-2:red;
  --foreground-1:rgb(255, 255, 255);
  --foreground-2:rgba(84, 2, 17, 0.944);
  --melon:rgba(54, 2, 33, 0.438);
  --yellow: rgba(250, 213, 5, 0.886)
}
body{
    background: white;
    color: black;
    font-family: 'Times New Roman', Times, serif;
    font-size: 18px;
}
h1{
    margin: 80px 0px 10px 0px;
}
#select{
    margin: 1px 20px 5px 90px;
    
}
#cities{
    color:rgb(12, 12, 12);
    border: 1px;
    border-radius: 10px;
    padding: 0px 2px 0px 5px;
    
}

#heading{
    margin: 70px 0px 20px 0px;
    text-transform: uppercase;
}
#products-thumbnail-div{
    display: flex;
    flex-wrap: wrap; 
    justify-content: space-evenly;   
    border: 1px solid rgba(21, 18, 18, 0);
    width: 95vw;
   
    
}
.products-thumbnail:hover{
    box-shadow: 5px 0px 40px rgba(0,0,0, .2);
}
.products-thumbnail{
    width: 200px;
    height: 270px;
    border: 2px solid var(--foreground-2);
    margin: 15px 5px;
    border-radius: 10px;
    transition: box-shadow 0.5s;
    text-transform: uppercase;
}
.products-thumbnail:hover{
    transform: scale(1.02, 1.02);
}
.search-thumbnail{
    width:100%;
    height: 60%;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
}
.search-thumbnail-details{
    text-align: center;
    font-family: "Courier New";
}
.product-details{
    display: flex;
    flex-wrap:nowrap;
    width: 100%;
    height: 12%;
    font-size: clamp(11px, 2vw, 14px );
    justify-items: center;
    text-align: center;
    
    

}
.product-details p{
    padding-left: 5px;
    margin: 0 auto;
}

.navbar {
    margin-bottom: 0;
    background-color: var(--foreground-2);
    z-index: 9999;
    border: 0;
    font-size: 12px !important;
    line-height: 1.42857143 !important;
    letter-spacing: 4px;
    border-radius: 0;
    max-width: 100vw
  }
  .navbar #logo{
    position: absolute;
    top: -40px;
    width: auto;
    height: 130px;
  }
  .navbar li a, .navbar .navbar-brand {
    color: rgb(250, 249, 249) !important;
  }
  
  .navbar-nav li a:hover, .navbar-nav li.active a {
    color: var(--foreground-2) !important;
    background-color: rgb(255, 255, 255) !important;
  }
  
  .navbar-default .navbar-toggle {
    border-color: transparent;
    color: var(--foreground-1) !important;
  }

  @media only screen and (max-width: 600px) {
    #select{
        margin: 1px 20px 5px 30px;
    }
    .products-thumbnail{
    width: 40vw;
    height: 42vw;
    font-size: 11px;
}
    .navbar #logo{
    height: 100px;
    top: -25px;
  }
  }
