body {
  background-color: #2c292c;
  color: #d6bdff;
  text-align: center;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto; /* Center the container itself horizontally on the page */
  max-width: 1200px; /* Maximum width of the container */

  padding: 20px; /* Adds some space inside the container */
}
.row,
.header-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 20px;
}

.row {
  margin-top: -15vh; /* Adjust based on the viewport height */
}

.column {
  flex: 50%; /* Default, two columns */
}
img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px; /* Spacing between images */
}


footer {
    width: 100%;
    padding: 20px 0;
    margin-top: 40px; /* Adjust based on your content */
    background-color: #2c292c; /* Matches the body's background color */
    color: #d6bdff; /* Matches the body's text color */
    font-family: Arial, sans-serif;
  }
  
  footer a {
    color: #d6bdff; /* Keeps link color consistent with the body text color */
    text-decoration: none; /* Removes underline from links */
  }
  
  footer a:hover {
    text-decoration: underline; /* Adds underline on hover for better UX */
  }
  

@media (max-width: 768px) {
  .column {
    flex: 100%; /* Stack images vertically on small screens */
  }
  .column.example {
    order: -1; /* Places the example image above the concept image on mobile */
  }

  .row {
    margin-top: -11vh; /* Adjust based on the viewport height */
  }
}
