/* CHI SONO*/
.about{
    transition: background-color .4s;
    padding-top: 125px;
    overflow: hidden;
}

.about__title{
  text-align: center;
  padding-bottom: 2rem;
}

.about__container{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
  padding: 20px;
}

.about__image{
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
}

.about__img{
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.about__info{
  width: 58%;
}

.about__description{
    position: relative;
    color: var(--title-color);
    font-size: 1.2rem;
    text-align: left;
}

.description__title{
  text-align: left;
  padding-bottom: 2rem;
}
/*----------- SMARTPHONE/TABLET -----------*/
@media screen and (max-width: 768px) {
  .about__info{
    width: fit-content;
  }

  .about__title{
   padding-bottom: 0;
  }
  
  .about__container{
    gap: 1rem;
    padding: 15px;
  }

  .about__image{
    max-width: 260px;
  }

  .about__description{
    font-size: 1rem;
    margin-top: 0px;
  }

  .description__title{
    text-align: center;
  }
  
}