* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f5f5f5;
}

.carousel-container {
  position: relative;
  width: 100%;
  max-width: 600px; /* Genişlik sınırı */
  height: 100vh; /* Tam ekran yüksekliği */
  overflow: hidden; /* Resimlerin dışarı taşmasını engelle */
}

.carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel img {
  flex-shrink: 0;
  width: 100%; /* Tam genişlik */
  height: 100%; /* Tam yükseklik */
  object-fit: cover; /* Resimleri ekranı kaplayacak şekilde ayarla */
}

button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 30px;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}

button.prev {
  left: 10px;
}

button.next {
  right: 10px;
}

button:focus {
  outline: none;
}
