  .button-h1 {
    color: white;
    text-decoration: no-underline;
  }      
        
        body {
            font-family: Playfair Display;
            margin: 0;
            padding: 0;
            background-color: #A9A9A9;
            color: #000000;
        }
        header {
            color: white;
            padding-bottom: 10px;
            padding-top: 1px;
            paddig-right: 5px;
            text-align: center;
        }
        header h1 {
            margin: 0;
            font-size: 2.5rem;
        }
        nav {
            margin-top: 1rem;
            text-align: right;
        }
        nav a {
            color: white;
            text-decoration: none;
            margin: 0 1rem;
            font-size: 1.2rem;
        }
        nav a:hover {
            text-decoration: underline;
        }

        h8 {
            font-size: 50px;
            margin: 0;
            text-align: center;
            font-family: Edu Austrailia VIC WA NT Hand Precursive;
        }
        .hero {
            background-image: url(https://cdn.discordapp.com/attachments/1085234784558645279/1310412935427915858/Goth_Wallpaper-transformed.jpeg?ex=674520a6&is=6743cf26&hm=82e2fb8c8854c580196b34703326ad75c0010fbdaeb26cbfd8872adb405bca92&);
            background-size: cover;
            background-position: center;
            height: 60vh;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
            text-align: center;
            font-family : Bokor;
        }
        .hero h2 {
            font-size: 90px;
            margin: 0;
            text-align: center;
        }
        .content {
            padding: 2rem;
        }
        .Products-section {
            margin-bottom: 3rem;
        }
        .Products-section h3 {
            border-bottom: 2px solid white;
            display: inline-block;
            padding-bottom: 0.5rem;
            margin-bottom: 1rem;
            font-size: 25px;
        }
        .Products-item {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }
        .Products-item img {
            width: 120px;
            height: 120px;
            object-fit: cover;
            margin-right: 1.5rem;
            border-radius: 8px;
            border: 2px solid #ddd;
        }
        .Products-item p {
            margin: 0;
            color: black;
            text-weight: bold;
            font-size: 24px;
        }
        .Products-item .price {
            font-weight: bold;
            color: #ffffff;
        }
        footer {
            background-color: #333;
            color: white;
            text-align: center;
            padding: 1rem;
            margin-top: 2rem;
        }