.banner {
    height:50vh !important;
}

.desktopShow {
    background-color:#FA2E00;
    display:flex;
    flex-flow:column;
    height:100vh;
    align-items:center;
    justify-content: center;
    color:white;
    text-align:center;
}
   
.mobileShow {
    display:none;
}   
    
@media only screen and (max-width: 600px) {
    .mobileShow {display:block;}
    .desktopShow {display:none;}
}