 /* Extra small devices (portrait phones, less than 576px) */
 /* No media query since this is the default in Bootstrap */

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

 }

 /* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) { 
    .logo{
        width: 100%;
    }

    .banner {
        height: 40vh;
        background-size: 100% 40vh;
        background-repeat: no-repeat;
    }
 }

 /* Large devices (desktops, 992px and up) */
@media (min-width: 992px) { 
    .logo{
        width: 40%;
    }
    
    .banner {
        height: 60vh;
        background-size: 100% 60vh;
        background-repeat: no-repeat;
    }
 }

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