@media only screen and (max-width: 330px){
   h2 {
	font-size: 26px;
	line-height: 50px;
   }
}
/*size for h2 on bigger screens*/
@media only screen and (min-width: 1000px) {
    h2 {
      font-size: 50px !important;
    }
}
/*size for h2 on smaller/mobile screens*/
@media only screen and (max-width: 1000px) {
    h2 {
      font-size: 24px !important;
    }
}
/*size for h6 on bigger screens*/
@media only screen and (min-width: 1000px) {
    h6 {
      font-size: 60px !important;
    }
}
/*size for h6 on smaller/mobile screens*/
@media only screen and (max-width: 1000px) {
    h6 {
      font-size: 24px !important;
    }
}
/*size for h1 on bigger screens*/
@media only screen and (min-width: 1000px) {
    h1 {
      font-size: 50px !important;
    }
}
/*size for h1 on smaller/mobile screens*/
@media only screen and (max-width: 1000px) {
    h1 {
      font-size: 28px !important;
    }
}