<style>
  
  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212; 
    color: #fff; 
    overflow-x: hidden; 
  }

  .main-heading {
    text-align: center;
    font-weight: bolder;
    padding: 50px 0;
    font-size: 48px;
    color: #ff6666; 
  }
  
  nav {
    background-color: transparent;
    padding: 10px 0;
    position: absolute;
    width: 100%;
    z-index: 999;
  }
  nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
  }
  nav ul li {
    display: inline;
    margin: 0 10px;
  }
  nav ul li a {
    color: #121212;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
  }
  nav ul li a:hover {
    color: #ff6666; 
  }
  
  .banner {
    padding: 200px 0; 
    color: #121212;
    text-align: center;
    background: linear-gradient(90deg, rgba(255, 102, 102, 0.5), rgba(255, 204, 0, 0.5)); 
    animation: pulse 2s infinite alternate; 
  }
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(1.08);
    }
  }
  
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 20px;
    justify-items: center;
    padding: 50px 0; 
  }
  .product {
    background-color: #222; 
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(255, 255, 255, 0.1); 
    transition: transform 0.3s ease;
    overflow: hidden; 
    position: relative; 
  }
  .product::before {
    content: "";
    background-image: url('hoodie_card.png'); 
    right: -30px; 
    bottom: -30px; 
    left: -30px; 
    z-index: -1; 
    pointer-events: none;
  }
  .product:hover {
    transform: translateY(-8px);
  }
  .product img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 14px;
    transition: transform 0.3s ease;
  }
  .product:hover img {
    transform: scale(1.05); 
  }
  .product h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #aaa; 
  }
  .product p {
    color: #aaa; 
    font-size: 16px;
    margin-bottom: 10px;
  }
  div.footer{
    width: 100%;
    border-radius: 5px;
    margin-bottom: 10px;
    text-align: center;
    color: #ff6666;
    font-size: 25px;
    font-weight: bolder;
  }
</style>