                /* 
                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:1rem;} /*1rem = 16px*/
               .text-responsive {font-size:1rem;} /*1rem = 16px*/
               /* Small devices (landscape phones, 360px and up) */
               @media (min-width: 360px) {
                       h1 {font-size:1rem;}
                       .text-responsive {font-size:4rem;}
                       .img-responsive {font-size:1.8rem;}
               }
               /* Small devices (landscape phones, 544px and up) */
               @media (min-width: 544px) {
                       h1 {font-size:1.5rem;}
                       .text-responsive {font-size:3rem;}
                       .img-responsive {font-size:1.5rem;}
               }
               /* Medium devices (tablets, 768px and up) The navbar toggle appears at this breakpoint */
               @media (min-width: 768px) {
                       h1 {font-size:2rem;}
                       .text-responsive {font-size:1.5rem;}
                       .img-responsive {font-size:1.2rem;}
               }
               /* Large devices (desktops, 992px and up) */
               @media (min-width: 992px) {
                       h1 {font-size:2.5rem;}
                       .text-responsive {font-size:1rem;}
               }
               /* Extra large devices (large desktops, 1200px and up) */
               @media (min-width: 1200px) {
                       h1 {font-size:3rem;}
                       .text-responsive {font-size:1rem;}
               }
               /* Set width to make card deck cards 100% width */
               @media (min-width: 950px) and (max-width:1100px) {
                       h1 {font-size:2.75rem;color:red;}
                       .text-responsive {font-size:1rem;}
               }