/* Reset default styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-image: url("../images/serious_collectables_background.jpg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-color: black;
}


/* Style the foreground image and text container */
#container {
  position: relative;
  margin: 100px auto;
  width: 90%;
  max-width: 900px;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  text-align: center;
}
#container p a {
  color: #666;
}

#container p a:hover {
  color: #00b0b9;
}

#foreground {
  margin-bottom: 30px;
}

#foreground img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

h1 {
  font-size: 32px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}
h2 {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
  margin-top: 20px;
}
h3 {
  font-size: 22px;
  font-weight: normal;
  color: #333;
  margin-bottom: 20px;
  margin-top: 20px;
}
h4 {
  font-size: 20px;
  font-weight: normal;
  color: #333;
  margin-bottom: 10px;
  margin-top: 10px;
}

p {
  font-size: 17px;
  color: #333;
  line-height: 1.3;
  text-align: left;
  margin-bottom: 0px;
}


/* Style the Square Buy now button */
.button-container {
display: flex;
justify-content: center;
margin-top: 30px; 
}

.button-wrapper {
flex: 1;
padding: 20px;
display: flex;
justify-content: center;
}

.button {
display: inline-block;
font-size: 18px;
line-height: 48px;
height: 48px;
color: #ffffff;
min-width: 212px;
background-color: #000000;
text-align: center;
box-shadow: 0 0 0 1px rgba(0, 0, 0, .1) inset;
border-radius: 6px;
text-decoration: none;
}



/* Media query for small screen sizes */
@media (max-width: 800px) {
.button-container {
  flex-direction: column;
  align-items: center;
}

.button {
  margin-bottom: 10px;
  margin-left: 10px;
  margin-right: 10px; /* Add desired padding value */
  
  
}
}

ul {
  list-style-type: disc; /* Change bullet style to discs */
  margin-left: 20px; /* Add left margin to the list */
  margin-bottom: 20px; /* Add bottom margin to separate list items */
  text-align: left;
}

/* Styling <li> items within the <ul> list */
ul li {
  margin-bottom: 10px; /* Add bottom margin to separate list items */
  line-height: 1.6; /* Increase line height for better readability */
}

/* Style for <strong> tags within <li> items */
ul li strong {
  color: #00a6af; /* Change color of strong tags */
  font-weight: bold; /* Ensure strong tags are bold */
}