*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    max-width: 99vw;
}
: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(99, 91, 162, 0.989);
    --yellow: rgba(250, 213, 5, 0.886)
}
body >div:first-child{
  background-image: url('photo-1607619056574-7b8d3ee536b2.jpeg');
  overflow: hidden;
  background-size: cover;
  backdrop-filter: blur(3px);
}
body >div:first-child::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.652);
}
body{
    background-color:var(--foreground-1);
    color: black;
    max-width: 100vw;
    font-size: 18px;
}

h4{
  font-size: 14px;
  font-style: italic;
  font-family: Brush Script MT;
}

#img-div{
  position: absolute;
  left: 0px;
  top: 70px;
}
#img-div img{
  padding-left: 30px;
  width: 250px;
}
.jumbotron{
    background: rgba(255, 0, 0, 0); 
    width: 100vw;
    color: white
}
.jumbotron h1{
    padding-top: 90px;
    color: white;
    
}
.jumbotron #search-input{
    border-radius: 30px;
    outline: none;
    padding:0px 15px;
    height: 50px;
    font-size: 30px;
    border: 1px solid white;
    background: transparent;
    backdrop-filter: blur(20px);
    margin-bottom: 50px;
    color: rgb(255, 255, 255);
   

}
.jumbotron #search-input::placeholder{
  color: rgba(251, 251, 251, 0.426)
}
.jumbotron .input-group{
    align-items: center;
    width: 40vw;
    margin: 0px auto;
    animation: slide 2s 0.25s;
}
@keyframes slide {
  from{
    transform: translateY(25%);
    opacity: 0
  }
  to{
    transform: translateY(0);
    opacity: 1
  }
}
.jumbotron .input-group #search-btn{
    background: none;
    color: white;
    font-size: 30px;
    outline: none;
    border: none;
    position: absolute;
    transform: translate(-9%, 68%);
    z-index: 999;
}
.jumbotron .input-group #search-btn span{
  background: none;
  color:white;
  font-size: 50px;
  outline: none;
  border: none;
  
}
#search-results{
    height: 200px;
    width: 50vw;
    margin: 0px auto;
    backdrop-filter: blur(5px);
    color: rgb(245, 245, 239);
    text-align: left;
    padding: 2px 5px 1px 40px;
    font-size: 22px;
    font-family: 'Times New Roman', Times, serif;
    
}
.search-result{
   background-color: rgba(189, 186, 186, 0.083);
   border-radius: 10px;
   overflow-y: auto;
   margin-top: 30px;
   
}
.search-result h2{
    text-align: center;
}

.search-results-div:hover{
  cursor: pointer;
}
#trending-products{
    padding: 50px 0px;
}
.row{
  margin: 10px auto;
}
.panel {
    border-radius:15px;
    margin:  10px auto;
    transition: box-shadow 0.5s;
    height: 250px;
    width: 90%;
    color: white;
    box-shadow: 5px 0px 40px rgba(68, 68, 68, 0.2);
    background: var(--foreground-2);
    padding: 20px 40px;
  }
  
  .panel:hover {
    transform: scale(1.02, 1.02);
  }
  .big-panel h2 {
    padding: 10px 0px;
    color: var(--melon);
    text-transform: uppercase;
    text-decoration: underline;
    font-weight: 500;
  }
  .panel h3{
    font-size: 2.5rem;
    color: var(--melon);
    font-weight: bolder;
    font-family: Georgia, 'Times New Roman', Times, serif;
    
  }
  .panel p{
    font-size: 2.0rem;
    padding: 20px 40px;
  }
  .img-topic{
    width: 100%;
    height: 85%;
  }
  .desc-panel{
    height: 60vh
  }
  .desc-panel p{
    padding: 12px 3px 4px 3px
  }



  
  .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 li a, .navbar .navbar-brand {
    color: rgb(250, 249, 249) !important;
    font-size: 14px;
  }
  .navbar #logo{
    position: absolute;
    top: -40px;
    width: auto;
    height: 130px;
  }
  .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;
  }

  footer{
    padding: 30px 0px 70px 0px;
    background: var(--foreground-2);
    color: var(--melon);
    font-size: large;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    width: 99vw;
  }
  footer img{
    width: auto;
    height: 100px;
    margin: 0 auto;
    
  }

  @media only screen and (max-width: 780px) {
    *{
      max-width: 100vw;
      font-size: 16px;
    }
    body{
      font-size: 14px;
    }
    #img-div img{
      padding-left: 30px;
      width: 70px;
    }
    .jumbotron h1{
      padding-top: 90px;
      
  }

  .jumbotron #search-input{
    padding:0px 4px;
    height: 35px;
    font-size: 12px;
    
   

}
    .jumbotron .input-group{
      width: 60vw;  
  }
  .jumbotron .input-group #search-btn{
    transform: translate(-9%, 76%);
   
}
.jumbotron .input-group #search-btn span{
  background: none;
  color:white;
  font-size: 30px;
  outline: none;
  border: none;
  
}
  .navbar #logo{
    height: 100px;
    top: -25px;
  }
   .navbar li a {
    font-size: 10px;
  }
  #search-results{
    width: 300px;
   
   
  }
  .panel{
    height: 300px
  }
   .panel h3{
    font-size: 2.8rem;
  }
  .panel p{
    font-size: 2.0rem;
    padding: 20px 5px 5px 5px;
  }
  .desc-panel{
    height: fit-content
  }
  footer{
    width: 100vw;
    font-size: 14px;
  }
   
  }

