.about_me {
  position: relative;
  padding: 40px 0;
}

.scroll_container {
  display: flex;
  overflow-x: hidden;
  scroll-snap-type: x mandatory;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.slide {
  min-width: 100%;
  height: 100%;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 40px;
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 0.9;
}

.slide:hover {
  transform: scale(1.05);
  opacity: 1;
}

.slide h2 {
  margin-bottom: 20px;
  font-size: 2rem;
  color: #e4f335;
  transition: color 0.3s ease;
}

.slide p {
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  max-width: 800px;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: white;
  cursor: pointer;
  user-select: none;
  z-index: 1;
  transition: color 0.3s ease;
}

.arrow:hover {
  color: #e4f335;
}

.left {
  left: 20px;
}

.right {
  right: 20px;
}
