/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: beige;
  }
  
  /* Header */
  header {
    background-color: #333;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo img {
    width: 120px;
    height: auto;
    margin-right: 10px;
  }
  
  .logo h1 {
    display: inline;
    font-size: 24px;
  }
  
  nav ul {
    list-style: none;
  }
  
  nav ul li {
    display: inline;
    margin: 0 10px;
  }
  
  nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  nav ul li a:hover {
    text-decoration: underline;
  }
  
  /* Main Content */
  main {
    padding: 20px;
  }
  
  .product {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .product h2 {
    font-size: 28px;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
  }
  
  /* Product Grid */
  .product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
  }
  
  /* Individual Product Card */
  .product-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    text-align: center;
  }
  
  .product-card img {
    width: 100%;
    max-width: 180px;
    border-radius: 8px;
    margin-bottom: 15px;
  }
  .product-card img:hover{
    transform: translateY(-5px);
  }
  
  .product-card p {
    margin: 10px 0;
  }
  
  .buy-button {
    padding: 8px 15px;
    background-color: #e60023;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
  }
  
  .buy-button:hover {
    background-color: #c4001c;
  }
  
  /* Footer */
  footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
  }
  
  footer p {
    margin: 0;
  } 
  
  