
.aboutMe {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
  }
  
  .description {
    column-gap: 100px;
    margin-top: 150px;
    /* border: 1px solid red; */
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    align-content: center;
    margin: 150px 200px 0 200px;
  }
  
  .paragraphs {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    row-gap: 100px;
    /* padding-right: 100px; */
  }
  
  .about-me-images {
    position: relative;
    width: 550px;
  }
  
  .aboutMe p {
    color: var(--white-color);
    width: 650px;
    /* border: 1px solid red; */
    font-size: 35px;
  }


  /* # Laptops Styles Size */
@media only screen and (max-width: 1100px) {
  .aboutMe {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .description {
    margin-top: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 80px;
  }

  .paragraphs {
    margin: 50px;
    text-align: center;
  }

  .about-me-images {
    width: 400px;
  }

  .aboutMe p {
    width: 450px;
    font-size: 25px;
  }
}


/* # Tablets Styles Size  200% */
@media only screen and (max-width: 768px) {
  .aboutMe p {
      width: 450px;
      font-size: 35px;
    }
    .about-me-images {
      width: 400px;
    }
  
}

/* # Tablets Styles Size  200% */
@media only screen and (max-width: 600px) {

    .aboutMe {
        /* border: 1px solid red ; */
        /* margin: 0; */
      }
      
      .description {
        margin: 40px;
        /* margin-top:?120px; */
        /* padding: 0; */
      }
    
      .paragraphs {
        row-gap: 20px;
      }
    
      .about-me-images {
        width: 250px;
      }
    
      .aboutMe p {
        width: 250px;
        font-size: 20px;
      }

}
