@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  min-height: 100vh;
background-color: rgba(228, 85, 109, 0.747);
  background-size: cover;
  background-position: center;
}
input::placeholder{
  color: #fff;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 100px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  z-index: 100;
}

.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: 0.5s;
}

.header:hover::before {
  left: 100%;
}

.logo {
  font-size: 25px;
  text-decoration: none;
  font-weight: 600;
  cursor: default;
}

.navbar a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  margin-left: 35px;
  transition: 0.3s;
}

.navbar a:hover {
  color: #f00;
}

#menu-icon {
  font-size: 36px;
  color: #fff;
  display: none;
}

/* BREAKPOINTS */
@media (max-width: 992px) {
  .header {
    padding: 1.25rem 4%;
  }
}

@media (max-width: 768px) {
#men-icon{
  display: block;
}
  .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 0.5rem 4%;
    display: none;
  }

  .navbar.active {
    display: block;
  }

  .navbar a {
    display: block;
    margin: 1.5rem 0;
  }

  .nav-bg {
    position: absolute;
    top: 79px;
    left: 0;
    width: 100%;
    height: 295px;
    background: rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    z-index: 99;
    display: none;
  }

  .nav-bg.active {
    display: block;
  }
}
@media (max-width: 400px) {
  #men-icon{
    display: block;
  }
h1{
  font-size: 30px;
}
}
#search-container{
    text-align: center;
    margin-top: 20px;

}

#search-input{
    padding: 10px;
    font-size: 16px;
background-color: transparent;
border-bottom: 2px solid rgb(255, 0, 0);
border-top: 2px solid rgb(255, 238, 0);
border-left: 2px solid rgb(0, 255, 42);
border-right: 2px solid rgb(0, 89, 255);
outline: none;
    
}

#item-list{
    background-color: rgba(255, 168, 168, 0.253);
    backdrop-filter: blur(20px);
    list-style: none;
    padding: 10px;
    width: 100%;
    height: 100px;
overflow-x: scroll;
margin-bottom: 10px;
margin-top: 40px;
height: 100%;
}
.app{
margin-top: 100px;

}
h1{
    margin-top: 30px;
    text-align: center;
    font-family: "Poppins", sans-serif;
    color: rgb(0, 0, 0);
}
p{
  color: black;
}
.item{
    padding: 20px;
    font-family: "Poppins", sans-serif;
    margin-left: 50px;
    margin-bottom: 30px;
    display: inline-flex;
    width: 80px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    color: transparent;
    overflow: hidden;
    height: 80px;
    padding: 20px;
    transition: transform 0.3s ease-in-out;
}

.item img{
  position: relative;
 scale: 2;
  bottom: 5px;
  width: 50px !important;
  display: inline-flex !important;
}
.item:hover{
    transform: scale(1.05);
}



