/* CSS Document */

.antispam { display:none;}

/* 
Extra small devices (portrait phones, less than 544px) 
No media query since this is the default in Bootstrap because it is "mobile first"
*/
h1 {font-size: 22px;}
h2 {font-size: 19px;}
h3 {font-size: 16px;}
/*
####################################################
M E D I A  Q U E R I E S
####################################################
*/
 
/*
::::::::::::::::::::::::::::::::::::::::::::::::::::
Bootstrap 4 breakpoints
*/
/* Small devices (landscape phones, 544px and up) */
@media (min-width: 544px) {  
  h1 {font-size: 26px;} /*1rem = 16px*/
  h2 {font-size: 23px;}
  h3 {font-size: 20px;}
}
 
/* Medium devices (tablets, 768px and up) The navbar toggle appears at this breakpoint */
@media (min-width: 768px) {  
  h1 {font-size: 30px;} /*1rem = 16px*/
  h2 {font-size: 27px;}
  h3 {font-size: 24px;}
}
 
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) { 
  h1 {font-size: 33px;} /*1rem = 16px*/
  h2 {font-size: 30px;}
  h3 {font-size: 27px;}
}
 
/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {  
  h1 {font-size: 36px;} /*1rem = 16px*/    
  h2 {font-size: 33px;}
  h3 {font-size: 30px;}
}
 
/*
::::::::::::::::::::::::::::::::::::::::::::::::::::
Custom media queries
*/
