@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,500&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Jost", sans-serif;
}

body {
  overflow-x: hidden;
  background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
  url("../staticimg/qwe.jpg");
  background-size: cover;
  background-position: top;
  color: white;
}

.logo a {
  color: white;
  text-decoration: none;
}

.logo {
  max-width: 200px;
}

.logo a img {
  width: 100%;
}

header {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 40px;
  border-bottom: solid 0.4px grey;
  background-color: white;
}

header a i {
  color: black;
  font-size: 30px;
  padding: 10px;
}

header .logo {
  margin-right: 58px;
}

section .title {
  text-align: center;
  padding: 20px;
}

.product-item-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: antiquewhite;
  width: 340px;
  margin: auto;
  height: 220px;
  
  border-radius: 20px;
  padding: 7px;
  color: black;
  margin-bottom: 20px;
}

.pr-left {
  flex: 1;
  width: 100%;
  height: 100%;
  border: solid 1px black;
  border-radius: 21px;
}

.des{
    font-size: 10px;
}
.pr-right {
  width: 150px;
  height: 100%;
  display: flex;
  row-gap: 3px;
  font-size: 13px;
  flex-direction: column;
  margin-left: 10px;
  border-left: solid 0.3px black;
  justify-content: center;
  
  padding: 10px;
}

.pr-right p {
  flex-wrap: nowrap;
}

.pr-left img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  

}
