.navigation {
    display: flex;
    justify-content: flex-start;
    padding: 30px;
}

.navigation a {
    text-decoration: none;
    color: #333;
    margin-right: 20px;
    color: rgb(245, 225, 44);
    font-size:20px ;
    font-family: fantasy;
}

.navigation a:last-child {
    margin-right: 0;
}

body {
    background-color: red;
    background-image: linear-gradient(to right, red , yellow);
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .product {
    width: calc(50% - 20px);
    margin-bottom: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
  }
  .product img {
    width: 100%;
    height: auto;
    display: block;
  }
  .product .details {
    padding: 20px;
    background-color: #d60f0f;
  }
  .product h2 {
    margin-top: 0;
    font-size: 20px;
    color: aliceblue;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  }
  .product p {
    margin-bottom: 0;
    color: aliceblue;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  }
  @media (max-width: 768px) {
    .product {
      width: calc(100% - 20px);
    }
  }
