/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) {
  
    /* html, body {
                background-color: yellow;
            } */
            .content {
        width: 100%;
    } 
    .aboutimages{
        width: 100%;
    }
    .example-image
    {
        height:150px;
    }
  
}

/* 
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  
    /* html, body {
                background-color: green;
            } */
            .content {
        width: 100%;
    } 
  .aboutimages{
        width: 100%;
    }
    .example-image
    {
        height:150px;
    }
}