body {
  font-family: "poppins", sans-serif;
  margin: 0;
  padding: 0;
}

header {
  background-color: #67fcc5;
  padding: 8px;
  text-align: center;
  font-family: "Playfair Display", serif;
  position: fixed;
  width: 100%;
}
nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
header nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

header nav ul {
  display: flex;
  margin-right: 20px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-size: 25px;
  font-weight: 700;
}
header nav ul li:hover {
  transition: all 2s;
  background-color: green;
  color: white;
  border-radius: 30%;
  padding: 20px;
  border: 1px solid #6d48f7;
}

#logo {
  font-family: "Poppins", sans-serif; /* or any font you like */
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(90deg, #0a011f, #6d48f7);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  border: 1px solid #6d48f7;
}
header nav a {
  color: #333;
  text-decoration: none;
  padding: 20px;
  border-radius: 30%;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

section {
  background-color: #f7f7f7;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 100%;
}
#home {
  width: 100%;
  height: 400px;

  background-image: url(images/image.png);
  margin-top: 90px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
button {
  background-color: #3d9cf5;
  color: #0a011f;
  padding: 20px;
  font-size: 25px;
  border-radius: 50%;
  border: none;
}
#welcome {
  font-size: 4rem;
  color: #f0f4f8;
  transition: all 1s;
  margin: 0;
  box-shadow: 1px 1px 3px #0a011f;
}

#welcome:hover {
  opacity: 0.8;
  transition: all 1s;
}
h1,
h2 {
  color: #333;
  font-family: "Playfair Display", serif;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
#products {
  width: 100%;
  text-align: center;
}
.product {
  background-color: #ffffff;
  padding: 20px;
  border: 1px solid #dddddd;
}

.product img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.product h3 {
  font-weight: bold;
  margin-top: 10px;
}
#contact {
  background: linear-gradient(aqua, gray);
  text-align: center;
  margin-bottom: 0;
}
#contact ul {
  display: flex;
  flex-direction: row;
  list-style: none;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

#contact ul li a {
  text-decoration: none;
  font-size: 20px;
}
#contact ul li a:hover {
  text-decoration: none;
  font-size: 23px;
  background: #0a011f;
  padding: 10px;
  border-radius: 8px;
  color: green;
  transition: all 1s;
}

@media (max-width: 475px) {
  header nav {
    flex-direction: column;
    align-items: center;
  }

  header nav ul {
    flex-direction: row;
    font-size: 14px;
    gap: 10px;
  }

  #logo {
    font-size: 20px;
  }

  #welcome {
    font-size: 2rem;
    text-align: center;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  header nav ul {
    font-size: 16px;
    gap: 15px;
  }

  #home {
    height: 300px;
    background-position: center;
  }

  button {
    font-size: 20px;
    padding: 15px;
  }
}
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  header nav {
    flex-direction: row;
    align-items: center;
  }

  header nav ul {
    font-size: 18px;
  }

  #logo {
    font-size: 24px;
  }
}
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #welcome {
    font-size: 3rem;
  }
}
@media (max-height: 500px) {
  #home {
    height: 200px;
  }

  #welcome {
    font-size: 1.5rem;
  }

  .product img {
    height: 100px;
  }
}
