header {
    background-color: black;
    text-align: right;
    color: rgb(186, 179, 179);
}

body {
    background-image: url('stucco/stucco.png'); 
    background-repeat: repeat;
    font-family: Verdana, serif;
    width: 80%;
    margin-top: 0px;
    margin-left: 10%;
    margin-bottom: 20px;
  }

/*    **************          Navigation menus     **********            */
nav {
    height: 30px;
    padding: 10px;
}

#mainMenu a {
    padding-right: 3%; /* Adjust the value to increase or decrease the spacing between elements in <nav>. */
}

#mainMenu a:hover {
    color: white;

}

#navMenu {
    background-color: rgb(236, 234, 234);
}

#navMenu a:hover{
    color: rgb(39, 117, 205);
}

#navMenu a {
    padding-left: 1%; /* Adjust the value to increase or decrease the spacing between elements in <nav>. */
    padding-right:4%;
}

nav a {
    color: inherit;
    text-decoration: none;
}

/*          ************   Main content of the webpage formatting  *************            */
p {
    margin-top: 0px;
}

section {
    padding-left: 1%;
    padding-right: 1%;
    margin-top: 1%;
    background-color: white;
}

#productView {
    display: flex;
    justify-content: center; 
}
#description {
    margin-left: 20px;
    padding: 1%;
}

#priceTag {
    color: #FF0000;
    font-weight: bold;
}

.alignleft {
    float: left;
}

.buttonBox {
    background-color: #f2f2f2;
    border: 1px solid #ccc;
    border-radius: 3px;
    display: flex;
    justify-content: center; /*https://developer.mozilla.org/en-US/docs/Web/CSS/justify-content*/
}
  
.buttonBox button {
    width: 300px; /* Adjust the width as needed */
    height: 40px; /* Adjust the height as needed */
    font-size: 18px; /* Adjust the font size as needed */
    font-weight: bold;
    color: blue;
    margin: 1%;
}

th {
    float: left;
}

#similarProducts {
    display: flex;
}

.productPreview{
    margin: 1%;
    border:1px solid #ccc;
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.productCard{
    margin: 5px;
    /* border:1px solid #ccc; */
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer {
    background-color: black;
    text-align: center;
    color: rgb(186, 179, 179);
    height: 30px;
    padding: 10px;
    margin-top: 2%;
}

/*                     Page 2 elements                    */
h4 {
    margin-bottom: 0;
}

.favorite-color{
    margin-left: 150px;
}

#interest-in-art {
    width: 300px; /* Adjust the width of the slider */
}