/*// XX-Large devices (larger desktops, 1400px and up)*/
@media (max-width: 1400px) {}


/*// X-Large devices (large desktops, 1200px and up)*/
@media (max-width: 1200px) {}


/*// Large devices (desktops, 992px and up)*/
@media (max-width: 992px) {
    h1 {
        font-size: 4rem;
    }
}



/*// Medium devices (tablets, 768px and up)*/
@media (max-width: 768px) {
    h1 {
        font-size: 3.2rem;
    }
}


/*// Small devices (landscape phones, 576px and up)/*/
@media (max-width: 576px) {}





