* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: inter, sans-serif;
  background: #ffffff;
  overflow-x: hidden;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 1);
  backdrop-filter: blur(10px);
  text-align: center;
  color:#0400DE;
  padding: 01rem;
  font-size: 1.8rem;
  font-weight: bold;
  z-index: 1000;
}

footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  color: #0400DE;
  background-color: rgba(255, 255, 255, 1);
  backdrop-filter: blur(10px);
  padding: 01rem;
  font-size: 0.9rem;
  z-index: 1000;
}

.scroll-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: y mandatory;
  padding: 120px 1rem 60px 1rem;
  gap: 0rem;
  align-items: flex-start;
}

.item {
  flex: 0 0 25vw;
  scroll-snap-align: start;
  transition: all 0.3s ease;
  background: #ffffff;
  border-radius: 0px;
  box-shadow: 0 0px 0px rgba(0,0,0,0.1);
  align-self: flex-start;
}

.item img.thumbnail {
  width: 100%;
  transition: opacity 0.3s ease;
  border-bottom: 0px solid #ddd;
}

.details {
  padding: 0 0rem;
  overflow: visible;
  transition: padding 0.3s ease;
  display: none;
}

.item.active .details {
  display: block;
  padding: 0rem;
}

.details img {
  width: 100%;
  border-radius: 0px;
  margin-bottom: 0rem;
}

.details p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #333;
  text-align: center;
  color:#5354F6;
}

@media (max-width: 600px) {
  .item {
    flex: 0 0 90vw;
  }

  header {
    font-size: 1.5rem;
    padding: 0.75rem;
  }

  .details p {
    font-size: 0.95rem;
  }
}
