@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
*{
    font-family: "Mulish", sans-serif;
}

body {
    background: #f4f4f4 no-repeat center fixed;
    margin: 0;
    padding: 0;
}
header {
    background: #333;
    color: white;
    padding: 15px 20px;
    text-align: center;
    font-size: 16px;
}
.content {
    /* border: 1px solid #000; */
    max-width: 1200px;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    text-align: left;
}
#content {
    text-align: center;
}
        nav ul {
            list-style: none;
            padding: 0;
        }
        nav ul li {
            display: inline;
            margin: 0 15px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
        }
        .products {
            display: flex;
            justify-content: center;
            gap: 20px;
            padding: 20px;
      flex-wrap: wrap;
        }
        .cards {
            background: white;
            padding: 15px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            text-align: left;
      font-size: 16px;
      max-width: 260px;
        }
        .cards img {
            max-width: 100%;
            border-radius: 10px;
        }
        .cards button {
            background: #333;
            color: white;
            border: none;
            padding: 10px;
            cursor: pointer;
            margin-top: 10px;
            border-radius: 5px;
      width: 100%;
      font-size: 16px;
        }
        .cards button:hover {
            background: red;
        }
        footer {
            text-align: center;
            padding: 15px;
            background: #333;
            color: white;
            margin-top: 20px;
      font-size: 12px;
        }