body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background: #e4e4e4;
}

.container {
  margin-bottom: 20px;
  background: #e4e4e4;
  border-radius: 20px;
  overflow: hidden;
  padding: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.carousel {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.carousel img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.5);
  border: none;
  font-size: 2rem;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 8px;
  z-index: 10;
}

.nav-button:hover {
  background: rgba(255, 255, 255, 0.8);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.info-buttons {
  display: flex;
  justify-content: left;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.info-buttons button {
  background: #e4e4e4;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  box-shadow: 4px 4px 8px #c5c5c5, -4px -4px 8px #ffffff;
  cursor: pointer;
  transition: all 0.3s;
}

button:active {
  color: #666;
  box-shadow: inset 4px 4px 12px #c5c5c5, inset -4px -4px 12px #ffffff;
}

footer {
  text-align: center;
  margin-top: 10px;
  padding: 10px;
}

.copy-right {
  margin: 20px;
  margin-bottom: 10px;
  font-size: 12px;
  display: block;
}