/* Reset some default styles */
body, h1, h2, p {
  margin: 0;
  padding: 0;
}

/* Apply a background image to the body */
body {
  background-image: url('./images/c023.jpg'); /* Replace with your background image */
  background-size: cover;
  background-position: center;
  font-family: Arial, sans-serif;
  color: white;
  display: flex;
  justify-content: center; /* Center content horizontally */
  align-items: center; /* Center content vertically */
  height: 100vh; /* Make sure the content takes the full viewport height */
}

/* Style container */
.container {
  background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background for content */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.4); /* Add a shadow to the container */
  display: flex;
  flex-direction: column; /* Stack content vertically */
  text-align: center;
}

/* Style content */
.content {
  margin-bottom: 20px;
}

/* Style headings and paragraphs */
h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 10px;
}

/* Style images */
.images {
  display: flex;
  justify-content: center;
  gap: 20px; /* Add spacing between images */
}


.images img {
  max-width: 100%;
  height: auto;
  border-radius: 10px; /* Rounded corners for images */
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4); /* Add a shadow to images */
}
