@media(max-width: 600px) {
p {
  word-break: break-word; 
  overflow-wrap: break-word; 
  -webkit-hyphens: auto;  
  -moz-hyphens: auto;
  -ms-hyphens: auto; 
  hyphens: auto;
}
ul {
  word-break: break-word; 
  overflow-wrap: break-word; 
  -webkit-hyphens: auto;  
  -moz-hyphens: auto;
  -ms-hyphens: auto; 
  hyphens: auto;
}
}