@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
}

.logosany {
  width: 230px;
  height: 180px;
  padding: 0;
  margin: 0;
}

nav {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 58px;
  display: flex;
  justify-content: center;
  gap: -5px;
  align-items: center;
  background: #f8f8f8;
  box-shadow: 0px 4px 40px -15px rgba(0, 0, 0, 0.25);
}

nav h1 {
  font-size: 20px;
  align-self: end;
  padding: 0 0 4px 0;
  font-family: unset;
  color: blue;
}

.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 16px;
}

.products-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 48px 0;
}

.products-section h1, h5 {
  color: blue;
}

.products-section h2 {
  color: gray;
}

.products-section strong {
  color: green;
}

.products-section:nth-child(1){
    padding-top: 100px;
}

.products-content ul{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  list-style: none;
}

.product {
  max-width: 24%;
  padding: 16px;
  background: #ffffff;
  box-shadow: 0px 4px 40px -20px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
}

.product .product-img {
  border-radius: 4px;
  max-width: 100%;
}

.product .product-main {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 0;
}

.product .product-title {
  font-size: 20px;
}

.product .product-category {
  font-size: 14px;
  font-weight: 400;
}

.product .product-price {
  font-size: 16px;
  font-weight: 600;
}
