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

body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f4f4f4;
  overflow-x: hidden;
}

.slider-container {
  width: 100vw;
  overflow: hidden;
  position: relative;
  padding: 60px 0 20px; /* Added top padding for circled_area visibility */
}

#slider {
  display: flex;
  transition: transform 0.5s ease;
}

.container {
  flex: 0 0 300px;
  height: 400px;
  margin: 0 15px;
  padding: 80px 30px 30px; /* Increased top padding */
  background-color: #6a2fc4;
  border-radius: 20px;
  color: white;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
}

.container:hover {
  transform: scale(1.05);
}

.circled_area {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  top: -40px; /* Adjusted to make it visible */
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.circled_area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reactangle_area {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.comment {
  font-size: 1rem;
  line-height: 1.6;
  font-style: italic;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}

.name_area {
  font-size: 0.9rem;
  font-weight: bold;
  margin-top: auto;
}
