/* 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;
}

h3 {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 40px;
}

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

/* Style the form */
form {
  text-align: left;
  font-size: 18px;
}

label {
  color: #333;
  font-weight: bold;
}

.subscribe-label {
  font-weight: normal;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 18px; /* Increase font size */
}

input[type="submit"] {
  background-color: #00b0b9;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 15px 40px;
  cursor: pointer;
  font-size: 20px;
  display: block;
  margin: 0 auto;
}

input[type="submit"]:hover {
  background-color: #008a96;
}

input[type="checkbox"] {
  transform: scale(1.5);
  margin-right: 10px;
}

/* Style the subscribe checkbox container */
.subscribe-container {
  text-align: center;
  margin-bottom: 20px;
}

/* Style the submit button container */
.submit-container {
  text-align: center;
  margin-top: 20px;
}
