* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
  }
  
  .conteiner {
    display: flex;
    margin: 5rem;
  }
  
  .conteiner-1 {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .conteiner-2 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .conteiner-2 h1 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 1.5625rem;
    color: #303030;
    margin-bottom: 2rem;
  }
  
  .conteiner-3 {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .conteiner-3 h2 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-family: "Poppins", sans-serif;
    color: #303030;
  }
  
  .conteiner-3 h3 {
    font-size: 0.9375rem;
    margin-bottom: 1rem;
    font-family: "Poppins", sans-serif;
    color: #303030;
  }
  
  .conteiner-3 p {
    text-align: justify;
    color: #616161;
    margin-bottom: 1rem;
  }
  
  
  @media (max-width: 550px) {
  
    .conteiner {
      display: flex;
      margin: 5rem;
    }
    
    .conteiner-1 {
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
    
    .conteiner-2 {
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    .conteiner-2 h1 {
      font-family: "Poppins", sans-serif;
      font-weight: 700;
      font-size: 0.9375rem;
      color: #303030;
      margin-bottom: 2rem;
  
    }
    
    .conteiner-3 {
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    
    .conteiner-3 h2 {
      font-size: 0.8125rem;
      margin-bottom: 1rem;
      font-family: "Poppins", sans-serif;
      color: #303030;
    }
    
    .conteiner-3 h3 {
      font-size: 0.625rem;
      margin-bottom: 1rem;
      font-family: "Poppins", sans-serif;
      color: #303030;
    }
    
    .conteiner-3 p {
      text-align: justify;
      color: #616161;
      margin-bottom: 1rem;
    }
    
  }
  
  