.about-me {
  margin-top: 20vh;
  display: flex;
}

.aboutMeFoto {
  width: 30vw;
  height: fit-content;
  margin-top: 10vh;
  margin-left: 10vw;
  border-radius: 10px;
  animation: fade-in linear;
  animation-timeline: view(700px 10px);
  animation-range-start: cover;
  animation-range-end: 600px;
}

@keyframes fade-in {
  from {
    scale: 0.8;
    opacity: 0;
  }
  to {
    scale: 1;
    opacity: 1;
  }
}

.aboutMeInfo {
  margin-left: 12vw;
  margin-top: 10vh;
  animation: fade-in linear;
  animation-timeline: view(700px 10px);
  animation-range-start: cover;
  animation-range-end: 600px;
}

.wrapper {
  animation-timeline: view(700px 10px);
  animation-range-start: cover;
  animation-range-end: 600px;
}

.aboutMeH1 {
  width: fit-content;
  height: 5vh;
  margin-top: 10vh;
  animation: fade-in linear;
  animation-timeline: view();
  animation-range-start: cover;
  animation-range-end: 600px;
}

.aboutMeText {
  width: 30vw;
  height: 70vh;
  margin-top: 5vh;
}

#app {
  width: 40vw;
  height: 82vh;
}

#largeSpacer {
  height: 20px;
}

#smallSpacer {
  height: 2px;
}

.typewtiter__wrapper {
  color: green;
}

/* Responsive design */
@media (max-width: 768px) {
  .aboutMeFoto {
    width: 30vw;
    height: fit-content;
    margin-top: 16vh;
    margin-left: 10vw;
    border-radius: 10px;
  }

  #app {
    height: 400px;
    font-size: 10px;
  }

  #largeSpacer {
    height: 10px;
  }
}

@media (max-width: 500px) {
  .about-me {
    margin-top: 5vh;
  }

  .aboutMeFoto {
    display: none;
  }

  #app {
    height: 400px;
    width: 80vw;
    font-size: 10px;
  }

  #largeSpacer {
    height: 10px;
  }
}

@media (max-width: 300px) {
  .aboutMeFoto {
    display: none;
  }

  #app {
    height: 450px;
    width: 80vw;
    font-size: 10px;
  }

  #largeSpacer {
    height: 10px;
  }
}
