.about {
    padding: 20px;
    text-align: center;
  }
  
  .about h2 {
    font-size: 24px;
    font-weight: bold;
    padding-bottom: 20px;
  }
  
  .text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .text h3 {
    margin: 20px;
    font-size: 15px;
    font-weight: lighter;
  }
  
  .text h3 span {
    font-size: 28px;
    font-weight: bold;
  }
  
  .text img {
    margin: 20px;
    max-width: 100%;
    height: auto;
  }
  
  @media (min-width: 768px) {
    .text {
      flex-direction: row;
      text-align: left;
    }
    
    .text h3 {
      margin: 30px;
      font-size: 18px;
    }
    
    .text h3 span {
      font-size: 32px;
    }
    
    .text img {
      margin-top: 50px;
      margin-right: 30px;
    }
  }
  
  @media (min-width: 1024px) {
    .text h3 {
      font-size: 20px;
    }
    
    .text h3 span {
      font-size: 35px;
    }
  }
  
  @media (min-width: 1440px) {
    .about h2 {
      font-size: 28px;
    }
    
    .text h3 {
      font-size: 22px;
    }
    
    .text h3 span {
      font-size: 40px;
    }
  }
  