* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #ffffff;
  color: #333;
}
main {
  padding: 24px 40px;
}

.navbar {
  background: #692c3f;
  color: #fff;
  padding: 14px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 16px;
  /* margin-left: 37px; */

  select {
    background-color: transparent;
    color: white;
    border: none;
    option {
      color: black;
    }
  }
}

.navbar nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 12px;
  font-size: 14px;
}

.btn {
  background: #1aa37a;
  border: none;
  padding: 8px 14px;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.logo-wrap img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  padding: 3px;
}

h1 {
  color: #692c3f;
  font-size: 60px;
}
.product {
  h2 {
    color: #692c3f;
    background-color: #b2e3f2;
    font-size: 64px;
  }

  .subType {
    font-size: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
  }
  .items {
    margin-top: 24px;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    background: #f1fde9;
    .oneProduct {
      width: 380px;
      height: 440px;
      display: flex;
      flex-direction: column;
      gap: 24px;

      img {
        border-radius: 50px;
      }
      .productName {
        background-color: #c6b2e0;
        color: #2e8074;
        border-radius: 10px;
        height: 72px;
        font-size: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
      }
    }
  }
}
