body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #fafafa;
    color: #333;
}

header {
    background-color: #2c2c2c;
    padding: 20px;
    text-align: center;
}

header h1 {
    color: #fff;
    margin: 0;
}


/* Style the tab buttons */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Add a background color to the active/current button */
.tab button.active {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
  display: none; /* Hide all content by default */
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
}






   /* Unvisited link */
    a:link {
      color: blue;
    }

    /* Visited link */
    a:visited {
      color: hotpink;
    }

    /* Mouse over link */
    a:hover {
      color: purple;
    }

    /* Selected link */
    a:active {
      color: green;
    }

nav a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;



}

nav a:hover {
    text-decoration: underline;
}

.container {
    padding: 40px;
    max-width: 1000px;
    margin: auto;
}


.signa {
  font-family: "Brush Script MT", cursive;
  font-size: 26px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 26px;
}

.gallery img {
    width: 100%;
    border-radius: 8px;
}

footer {
    background-color: #2c2c2c;
    color: #fff;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
}

.container2 {
    /* Set the container to relative positioning so the absolute positioning of 
    the price is relative to this container. */
    position: relative; 
    width: 100%; 
    max-width: 400px;
    max-height: 400px;
}

.image {
    /* Ensure the image fills the container width */
    display: block;
    width: 200px;
    height: 300px;
}

.price-overlay {
    /* Position the price absolutely within its relative parent container */
    position: absolute; 
    
    /* Place the price in the top-left corner */
    top: 10px; 
    left: 10px; 

    /* Styling for the price tag (optional) */
    background-color: #000; /* Black background */
    color: #fff; /* White text */
    padding: 5px 10px; /* Some padding around the text */
    border-radius: 5px; /* Rounded corners */
    font-weight: bold;
    z-index: 2; /* Ensure the price is above other elements */
}