* {
box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

#wholePage {
    display:flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    width:100%;
    max-width:100%;
    min-height:100vh;
}

#banner {
    background-image: url('/banner');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width:100%;
    height:945px;
    max-width: 100%;
    cursor: pointer;
}

@media only screen and (min-width:1921px) {
    #banner {
        background-image: url('/banner');
        background-repeat: no-repeat;
        background-size: 100% 100%;
        width:1920px;
        height:945px;
        max-width: 100%;
        cursor: pointer;
    }
}

@media only screen and (max-width:1000px) {
    #banner {
        background-image: url('/bannerSmall');
        background-repeat: no-repeat;
        background-size: 100% 100%;
        width:100%;
        height:1000px;
        max-width: 100%;
        cursor: pointer;
    }
}