/* Large Desktops */
@media (max-width: 1200px) {
    h1 {
        font-size: 3rem;
    }
}

/* Laptops and Small Desktops */
@media (max-width: 992px) {
    /* Styles for laptops and tablets in landscape */
}

/* Tablets and Medium Devices */
@media (max-width: 768px) {
    /* Styles for tablets and small laptops */
}

/* Phones */
@media (max-width: 576px) {
    /* Styles for larger smartphones */
}

/* Extra Small Devices (Phones) */
@media (max-width: 480px) {
    /* Styles for very small phones */
}