body {
  background-image: url('assets/background.png'); /* Path to the image in the assets folder */
  background-repeat: repeat; /* Repeats the image on x and y axes */
  background-size: auto; /* Keeps the original image size */
  margin: 0; /* Removes default body margins */
  color: #E1BEE7; /* Sets the text color to cyan */
}

.left-image {
  display: block; /* Ensures the image takes up its own block */
  margin: 20px auto; /* Centers the image horizontally and adds space above */
}

.certification {
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center; /* Center-aligns the content */
}

.small-text {
  font-size: 12px; /* Small text size */
  font-weight: bold;
}

.certification-images {
  margin-top: 10px;
  display: flex; /* Makes the images align horizontally */
  justify-content: center; /* Centers the images horizontally */
  gap: 10px; /* Adds space between the images */
}

.browser-image {
  width: 100px; /* Sets a fixed width for the images (adjust as needed) */
  height: auto; /* Maintains aspect ratio */
}

.guest-button {
    display: block;
    text-align: center;
    font-size: 36px;
    max-width: 350px;
    margin: auto;
    padding: 1rem;
    background: transparent;
    border: none;
    cursor: pointer;
}

.guest-h5 {
    font-size: 14px;
    font-weight: 300;
    color: #E1BEE7;
    display: block;
    margin-block-start: 0.5em; /* Reduce space above the h5 */
    margin-block-end: 0.2em; /* Reduce space below the h5 */
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}

.guest-h3 {
    font-size: 24px;
    color: #E1BEE7;
    display: block;
    margin: 0; /* Remove any default margin */
    padding: 0;
    border: 0;
    font-weight: bold;
    font-family: "Courier New", Courier, monospace; /* Sets the font to Courier New */
}

h2 {
    color: black;
    font-family: "Courier New", Courier, monospace; /* Sets the font to Courier New */
}

.guestbook-img {
    width: 100px;
}

/* Modal styles */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1000; /* Keeps the modal above other content */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5); /* Black background with transparency */
}

.modal-content {
  background-color: #fff;
  margin: 10% auto; /* Center the modal */
  padding: 20px;
  border-radius: 8px;
  width: 80%;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.modal-content h2 {
  margin-bottom: 15px;
}

.modal-content p {
  margin: 15px 0;
  color: black;
}

.modal-image {
  width: 200px;
  height: auto;
  margin-bottom: 15px;
}

textarea {
  width: 100%;
  max-width: 600px;
  min-width: 300px;
  font-size: 16px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  resize: vertical;
}

.form-wrapper {
  text-align: center; /* Center the text within the form */
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 600px; /* Limit the width of the form */
  margin: 0 auto; /* Centers the form-wrapper horizontally */
}