/* // X-Small devices (portrait phones, less than 576px)
// No media query for `xs` since this is the default in Bootstrap */

.mybox1 {
    background-color: rgb(100, 188, 163);
    min-height: 200px;
    margin: 20px 10px;
    padding: 20px;
}

h2 {
    color: rgb(154, 11, 39);
}




/* // Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) { 
    h2 {
        color:blue;
    }
    
 }

/* // Medium devices (tablets, 768px and up) */
@media (min-width: 768px) { 
    h2 {
        color:darkviolet;
    }
    
 }

/* // Large devices (desktops, 992px and up) */
@media (min-width: 992px) { 
    h2 {
        color:mistyrose;
    }
    
 }

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