/* Reset some default styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        .fifty h1{
            position: relative;
            top: -500px;
            color: #fff;
            font-size: 100px;
        }
        .fifty p{
            position: relative;
            top: -500px;
            color: #fff;
            font-size: 50px;
        }
        body {
            font-family: Arial, sans-serif;
            background-color: #d9d9d9;
            padding: 20px;
            margin: 0;
        }
        header {
            text-align: center;
            margin-bottom: 30px;
        }

        header h1 {
            color: #333;
        }

        .products {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .product-card {
            background: gray;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            transition: transform 0.2s ease;
        }

        .product-card:hover {
            transform: scale(1.03);
        }

        .product-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .product-info {
            padding: 15px;
        }

        .product-info h3 {
            font-size: 18px;
            margin-bottom: 10px;
            color: green;
        }

        .product-info p {
            font-size: 14px;
            color: green;
            margin-bottom: 10px;
        }

        .price {
            font-size: 16px;
            font-weight: bold;
            color: green;
            margin-bottom: 10px;
        }

        .buy-btn {
            display: inline-block;
            padding: 10px 15px;
            background-color: black;
            color: green;
            text-decoration: none;
            border-radius: 5px;
            transition: background 0.3s ease;
        }

        .buy-btn:hover {
            background-color: black;
        }
        #about-us{
            background-color: white;
            min-height: 50vh;
            padding: 100px 40px 60px 100px;
        }
        #about-us .about h1{
            text-decoration: underline;
        }
        #about-us .about p {
            max-width: 900px;
            line-height: 1.6;
        }
        #about-us{
    background-color: white;
    min-height: 50vh;
    padding: 100px 40px 60px 100px;
}

@media screen and (max-width: 600px) {
    #about-us {
        padding: 60px 20px;
        min-height: auto;
    }

    #about-us .about h1 {
        font-size: 1.8rem;
    }

    #about-us .about p {
        font-size: 0.95rem;
    }
}
        #login,
        #Sign-up {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 40px 20px;
        }
        #login .login,
        #Sign-up .Sign-up {
            width: min(450px, 90%);
            background-color: #ffffff;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
            padding: 30px 25px;
            margin: 0 auto;
        }
        #login .login h3,
        #Sign-up .Sign-up h1 {
            text-align: center;
            margin-bottom: 20px;
            font-size: 2rem;
            color: #222;
        }
        #login .logged,
        #Sign-up .Sign-up {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        #login .logged input,
        #Sign-up .Sign-up input {
            width: 100%;
            padding: 12px 14px;
            border: 1px solid #cfcfcf;
            border-radius: 8px;
            font-size: 1rem;
        }
        #login .logged input[type="submit"],
        #Sign-up .Sign-up input[type="submit"] {
            background-color: #333;
            color: #fff;
            border: none;
            cursor: pointer;
            font-weight: bold;
        }
        #login .logged h4,
        #Sign-up .Sign-up h4 {
            text-align: center;
            margin-top: 10px;
        }
        #login .logged a,
        #Sign-up .Sign-up a {
            color: #0f7a0f;
            text-decoration: none;
            font-weight: 600;
        }
        #sign-up{
            background-color: #fff;
            width: 100%;
            height: 350px;
            margin: auto;
        }

        .site-footer {
            background-color: #111;
            color: #fff;
            text-align: center;
            padding: 20px 15px;
            margin-top: 30px;
        }

        .site-footer p {
            margin: 0;
            font-size: 0.95rem;
        }

        @media screen and (max-width: 600px) {
            #about-us {
                padding: 60px 20px;
                min-height: auto;
            }

            #about-us .about h1 {
                font-size: 1.8rem;
            }

            #about-us .about p {
                font-size: 0.95rem;
            }
        }
         body {
    background-color: black;
}
.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.image-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}