.about-Content {
  display: flex;
  flex-direction: row;
  flex-shrink: 1;
  justify-content: space-evenly;
  gap: 0.5vw;
  padding: 2vw;
}



.about-Content.portrait {
  border: none;
}

.about-text {
  padding: 2vw 2vw;
}

.about-Content h1 {
  font-size: clamp(20px,4vw, 28px);
  color: darkcyan;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.2);
}

.about-Content h2 {
  font-size: clamp(16px,2vw, 18px);
  color: rgba(0, 0, 0, 0.6);
}

.about-Content h3 {
  font-size: clamp(14px, 1.5vw, 16px);
  color: gray;
}

.en-span {
  font-size: 0.8em;
  color:lightseagreen;
}

.email span.en-span {
    font-size: 0.9em;
    font-weight: 500;
    color: teal;
}

.contact-info{
    /* gap:0.1em; */
    display: flex;
    flex-direction: row;
    flex-shrink: 1;
    justify-content: space-evenly;
    /* gap: 0.5vw; */
    padding: 2vw;
}

.contact {
  background-color: antiquewhite;
  padding: 7vw 3vw;
  text-wrap: balance;
  scale: 0;
  animation: flyin1 1s ease-in  normal forwards;
  flex-basis: 15%;
}

.address {
  background-color:lemonchiffon;
  padding: 3vw;
  flex-basis: 40%;
  animation: flyin2 1s ease-in 1s  normal forwards;
  /*animation-timeline: view(y);*/
  scale: 0;
}

.email {
  background-color: aqua;
  scale: 0;
  flex-basis: 25%;
  padding: 2vw;
  animation: flyin3 1s linear 2s  normal forwards;
  /*animation-timeline: view(y);*/
  perspective: 100px;
  transform-style: preserve-3d;
}

@keyframes flyin1{
  0% {scale: 0;}
  50% {scale: 1.5;}
  to {scale: 1;}
  
}

@keyframes flyin2{
  0% {scale: 0;}
  50% {scale: 1.5;}
  100% {scale: 1;}
}

@keyframes flyin3{
  0% {
    scale: 0;
    transform: rotate3d(1, 1, 0, 1turn);
  }
  25% {
    scale: 0.75;
    /*transform: rotate3d(1, 1, 0, 0.25turn);*/
  }
  50% {
    scale: 1.5;
    /*transform: rotate3d(1, 1, 0, 0.5turn);*/
  }
  100% {
    scale: 1;
    transform: rotate3d(0, 0, 0, 0turn);
  }
}

.contact-info h2, .contact-info h3, .contact-info p {
    display: unset;
    min-height: 5vw;
    height: fit-content;
    margin: auto;
    /* padding: 1.5vw; */
    max-width: 100%;
}

@media screen and (max-width: 800px) {
  .about-Content, .contact-info {
    flex-direction: column;
  }
  .about-Content.portrait {
    width: 90%;
    margin: auto;
  }
}
