body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
      "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
      sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.993) 100%); */
    color: #eee;
    user-select: none;
  }
  
  code {
    font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
      monospace;
  }
  
  .nft {
    user-select: none;
    max-width: 300px;
    margin: 1rem;
    border: 1px solid #00000000;
    background-color: #322834;
   background-color: #eee;
    border-radius: .7rem;
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    overflow: hidden;
    transition: .5s all;
  }
  
  .nft hr {
    width: 100%;
    border: none;
    border-bottom: 1px solid #88888855;
    margin-top: 0;
  }
  
  .nft ins {
    text-decoration: none;
  }
  
  .nft .main {
    display: flex;
    flex-direction: column;
    width: 90%;
    padding: 1rem;
  }
  
  .nft .tokenImage {
    border-radius: .5rem;
    max-width: 100%;
    height: 250px;
    object-fit: cover;
  }
  
  .nft .description {
    margin: .5rem 0;
    color: #000000;
  }
  
  .nft .tokenInfo {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .nft .tokenInfo .price {
    display: flex;
    align-items: center;
    color: #ee83e5;
    font-weight: 700;
  }
  
  .nft .tokenInfo .price ins {
    margin-left: -.3rem;
    margin-right: .5rem;
  }
  
  .nft .tokenInfo .duration {
    display: flex;
    align-items: center;
    color: #a89ec9;
    margin-right: .2rem;
  }
  
  .nft .tokenInfo .duration ins {
    margin: .5rem;
    margin-bottom: .4rem;
  }
  
  .nft .creator {
    display: flex;
    align-items: center;
    margin-top: .2rem;
    margin-bottom: -.3rem;
  }
  
  .nft .creator ins {
    color: #000000;
    text-decoration: none;
  }
  
  .nft .creator .wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #ffffff22;
    padding: .3rem;
    margin: 0;
    margin-right: .5rem;
    border-radius: 100%;
    box-shadow: inset 0 0 0 4px #000000aa;
  }
  
  .nft .creator .wrapper img {
    border-radius: 100%;
    border: 1px solid #ffffff22;
    width: 2rem;
    height: 2rem;
    object-fit: cover;
    margin: 0;
  }
  
  .nft::before {
    position: fixed;
    content: "";
    box-shadow: 0 0 100px 40px #ffffff08;
    top: -10%;
    left: -100%;
    transform: rotate(-45deg);
    height: 60rem;
    transition: .7s all;
  }
  
  .nft:hover {
    border: 1px solid #00000044;
    box-shadow: 0 7px 50px 10px #000000aa;
    transform: scale(1.015);
    filter: brightness(1.3);
  }
  
  .nft:hover::before {
    filter: brightness(.5);
    top: -100%;
    left: 200%;
  }
  
  .bg {
    text-align: center;
    padding: 2rem 0;
  }
  
  .bg .main-title {
    font-size: 4rem;
    color: black;
  }
  
  .bg .topImage {
    max-width: 100%;
    height: 350px;
    display: block;
    margin: 0 auto;
  }
  
  .bold-text {
    font-weight: bold;
    color: #000;
  }
  
  .buttonContainer {
    text-align: center;
    margin-top: 1rem;
  }
  
  .buyButton {
    background-color: #ff73f3;
    color: #fff;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 0.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, box-shadow 0.3s;
  }
  
  .buyButton:hover {
    background-color: #ff4edb;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  }
  
  .productGrid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
  }
  