
/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/
p {

  font-size: 1.5em;
  font:26px Verdana, Arial, Helvetica, sans-serif;
}


@media (min-width: 1281px) {
  
   body {
    background-color: lightsalmon;
}
h1 {
    color: blue;
      font-size: 100%;
}
p {
    color: red;
    margin: 1;
    font-size: 1.6em;
}

ul{line-height: 20px}    
     
 section {
    display: block;
}
}

#col {
	  margin-top: 50px;
	    line-height: 200%;
  column-count: 4;
  column-gap: 40px;
  
}

/* 
  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/

@media (min-width: 1025px) and (max-width: 1280px) {
  
   body {
    background-color: powderblue;
}
h1 {
    color: blue;
      font-size: 100%;
}
p {
    color: red;
    margin: 1;
      font-size: 1.6em;
}

ul{line-height: 20px}    
     
 section {
    display: block;
}


#col {
	  margin-top: 50px;
	    line-height: 200%;
  column-count: 3;
  column-gap: 30px;
  
}
}
/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1080px) {
  
  body {
    background-color: lightgreen;
}
h1 {
    color: blue;
      font-size: 100%;
}
p {
    color: red;
    margin: 1;
      font-size: 1.6em;
}

ul{line-height: 20px}    
     
 section {
    display: block;
}


#col {
	  margin-top: 50px;
	    line-height: 200%;
  column-count: 2;
  column-gap: 40px;
  
}

/* 
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/
}
@media (min-width: 768px) and (max-width: 1080px) and (orientation: landscape) {
  
  //CSS
  
}

/* 
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/

@media (min-width: 481px) and (max-width: 767px) {
  
 body {
    background-color: white;
}
h1 {
    color: blue;
      font-size: 100%;
}
p {
    color: red;
    margin: 1;
    font-size: 100%;
}
ul{line-height: 20px}    
     
 section {
    display: block;
}


#col {
	  margin-top: 50px;
	    line-height: 200%;
  column-count: 2;
  column-gap: 4px;
  
}
     }




/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/

@media (min-width: 320px) and (max-width: 400px) {
  
   body {
    background-color: yellow;
}
h1 {
    color: blue;
      font-size: .8em;
}
p {
    color: red;
    margin: 1;
      font-size: 26px;
}

ul{line-height: 20px}    
     
 section {
    display: block;
}


#col {
	  margin-top: 50px;
	    line-height: 200%;
  column-count: 1;
  column-gap: 4px;
  
}
}