/* theme colours
Red     #EB2128 or rgb(235, 33, 40)
Green   #41AD49 or rgb(65, 173, 73)
Blue    #2EA2DB or rgba(46, 162, 229)
heading #4FB3BF;
*/
@font-face {
    font-family: bombing;
    src: url(Bombing.ttf);
}
* {margin: 0; padding: 0; box-sizing: border-box;}
section {min-height: 100vh;}
html {scroll-behavior: smooth;  font-family: 'Comic Sans MS', cursive, sans-serif;}
.bg-blue {background-color: #2EA2DB;}
.bg-red {background-color: #EB2128;}
.bg-green {background-color: #41AD49;}

/* helpers */
.bombing {font-family: bombing;}
.bg-settings {background-repeat: no-repeat; background-position: left; background-size: cover;}
.relative {position: relative;}

/* setting font sizes */
.rem6 {font-size: 6rem;}

/*  Small devices */
@media only screen and (max-width : 800px) {
    .rem6 {font-size: 3rem;}
}
/*  IPADS TABLET SERIES                          */
@media only screen and (min-width : 768px) and (max-width : 1023px) and (orientation: portrait){}
/*  CALLPHONES INTO LANS=DSCAPOE MODE           */
@media only screen and (min-width : 390px) and (max-width : 1023px) and (orientation: landscape) {}