.avatar-container {
  height: 100vh;
  width: 100%;
  display: grid;
  grid-template-columns: 0 1fr;
  grid-template-rows: 1fr;
  grid-auto-flow: column;
  align-content: center;
  align-items: center;
}
.avatar-container > .avatar {
  display: block;
  width: fit-content;
  height: min(400px, 100vh);
}
.avatar-container > .avatar > .avatar-img {
  position: relative;
  height: 100%;
  object-fit: fill;
}
.avatar-container > .intro-text {
  grid-column: 2;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.avatar-container > .intro-text > .intro {
  position: absolute;
  flex-grow: 1;
}

@media screen and (max-width: 768px) {
  .avatar-container {
    padding-bottom: env(safe-area-inset-bottom, 0);
    align-items: unset;
    grid-template-columns: 1fr;
    grid-template-rows: 0 1fr;
    grid-auto-flow: row;
    justify-items: stretch;
  }
  .avatar-container > .avatar {
    justify-self: center;
    display: block;
    width: min(485.3px, 100vw);
    height: fit-content;
  }
  .avatar-container > .avatar > .avatar-img {
    position: relative;
    width: 100%;
    height: unset;
    object-fit: fill;
  }
  .avatar-container > .intro-text {
    grid-column: 1;
    grid-row: 2;
  }
}
.header {
  height: 100px;
  width: 100%;
  background-color: #323b70;
  z-index: -1;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .header {
    padding-left: 100px;
  }
}
.technologies-container {
  position: absolute;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.technologies-container > .technologies-title {
  position: relative;
  text-align: center;
  font-size: 3em;
  padding: 0 1em;
}
.technologies-container > .technologies-list {
  position: relative;
  display: flex;
  gap: 1em;
  justify-content: center;
  font-size: 2em;
  flex-wrap: wrap;
}
.technologies-container > .technologies-list > ol {
  position: relative;
  padding-inline-start: 0;
}

@keyframes avatar-move-in {
  to {
    transform: translateX(100%);
  }
}
@keyframes my-move-2 {
  to {
    opacity: 0;
  }
}
@keyframes my-move-3 {
  to {
    transform: rotate(360deg);
  }
}
.scroll-container {
  position: relative;
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

.time-line-container {
  view-timeline-name: --default-timeline;
  view-timeline-axis: block;
}

.sticky {
  position: sticky;
  top: 0;
  width: 100%;
  container-type: inline-size;
  container-name: --scroll-container;
}

.snap-container {
  display: flex;
  flex-direction: column;
  /* > .snap-block {
     &:nth-child(odd) {
       background: red;
     }
     &:nth-child(even) {
       background: blue;
     }
   }*/
}

.snap-block {
  flex-basis: var(--length, 1);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  width: 10px;
}

.dum-block-container {
  width: 100%;
  height: 100vh;
  background: yellow;
  display: grid;
  grid-template-areas: "avatar hello";
  align-content: center;
  justify-items: center;
}
.dum-block-container > .avatar {
  position: relative;
  grid-area: avatar;
}
.dum-block-container > .hello {
  position: relative;
  grid-area: hello;
}
.dum-block-container > .dum-block:nth-child(odd) {
  background: red;
}
.dum-block-container > .dum-block:nth-child(even) {
  background: blue;
}

.test-time-line {
  position: absolute;
  top: 0;
  height: 100px;
  width: 0;
  background: red;
  animation: animation-test-time-line linear forwards;
  animation-timeline: --default-timeline;
  animation-range: 16.67% contain 100%;
}

@keyframes animation-test-time-line {
  to {
    width: 100px;
  }
}
.dum-block {
  height: 150px;
  width: 150px;
  background: blue;
}