section {
    margin: 0 5% 0 5%;
}

img {
    width: 5%;
    height: auto;
}

h1, h2, h3, p {
  background: none;
  color: rgb(65, 7, 26);
}

/* Header */
.header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
  background: #f1d3de;
  color: white;
  font-size: 30px;
  padding: 50px;
}

.header-img {
  background: none;
  margin-left: 55%;
}

.profile-picture {
  width: 200%;
  height: auto;
}

.header-text {
  background: none;
  margin-right: 15%;
  margin-left: 50%;
  margin-top: 4%;
}

.title {
 padding-top: 5%;
}

#hello-again {
  margin-top: -5%;
}

/* MY Story */
.mystory-container {
  margin-top: -10%;
  margin-left: 3%;
  margin-right: 7%;
}

.my-story-header {
  text-align: left;
  margin-bottom: 20px;
}

.my-story-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
  align-items: start;
}

.my-story-selfie {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.my-story-paragraph {
  padding: 20px;
  background: none;
  margin-top: -2%;
}

.my-skills-container {
  margin-top: -25%;
  margin-left: 7%;
  margin-right: 7%;
}

/* My Passions */
.my-passions-container {
  margin-top: -25%;
  margin-left: 7%;
  margin-right: 7%;
}

.my-passions-container h1 {
  text-align: left;
  margin-bottom: 20px;
}

.my-passions-container p {
  text-align: left;
  margin-bottom: 20px;
}

.passions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.passion-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.passion-item h3 {
  margin-bottom: 10px;
  text-align: center;
}

.passion-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 10px;
}


/* Image Carousel */
.image-carousel-wrapper {
  display: flex;
  max-width: 1200px;
  position: relative;
}
.image-carousel-wrapper i {
  top: 50%;
  height: 44px;
  width: 44px;
  color: #343F4F;
  cursor: pointer;
  font-size: 1.15rem;
  position: absolute;
  text-align: center;
  line-height: 44px;
  background: #fff;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: transform 0.1s linear;
}
.image-carousel-wrapper i:active {
  transform: translateY(-50%) scale(0.9);
}
.image-carousel-wrapper i:hover {
  background: #f2f2f2;
}
.image-carousel-wrapper i:first-child {
  left: -22px;
}
.image-carousel-wrapper i:last-child {
  right: -22px;
}
.image-carousel-wrapper .carousel {
  font-size: 0px;
  cursor: grab;
  overflow: hidden;
  white-space: nowrap;
  scroll-behavior: smooth;
}
.carousel.dragging {
  cursor: grab;
  scroll-behavior: auto;
}
.carousel.dragging img {
  pointer-events: none;
}
.carousel img {
  height: 300px;
  object-fit: cover;
  object-position: 0% 30%;
  user-select: none;
  margin-left: 14px;
  width: calc(100% / 3);
  transition: transform 0.3s ease;
}
.carousel img:first-child {
  margin-left: 0px;
}
