/* styles.css */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  color: #333;
}

header {
  background-color: #4a4a4a;
  color: white;
  text-align: center;
  padding: 1rem;
}

main {
  padding: 20px;
  max-width: 800px;
  margin: 0 auto;
}

footer {
  background-color: #4a4a4a;
  color: white;
  text-align: center;
  padding: 1rem;
  position: fixed;
  bottom: 0;
  width: 100%;
}

/* Basic Carousel Styles */
.carousel {
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  will-change: transform;
  gap: 0.5rem;
}

.carousel-item {
  flex-shrink: 0;
  width: 10rem;
  height: 10rem; /* Added height to make it a square for this example */
  border: 1px solid rgba(0, 0, 0, 0.1); /* Subtle border */
  border-radius: 8px; /* Rounded corners */
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff; /* Optional: adds a white background */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); /* Optional: adds a subtle shadow for depth */
}