body {
    font-family: 'Spartan', sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;

}

#banqz-Logo {
    margin-top: 100px;
    margin-bottom: 100px;
}

#banqz-Title h1 {
    font-weight: 200;
    font-size: 48px;
}

#banqz-Subtitle h4 {
    font-weight: 100;
    font-size: 18px;
}

/* Mailchimp form container/wrapper */
#mc_embed_signup_scroll {
    display: flex;
    height: 56px;
}

/* Mailchimp Textfield */
#mce-EMAIL {
    height: 100%;
    width: 545px;
    border-radius: 71px;
    border: 0;
    outline: none;
    font-family: 'Spartan', sans-serif;
    font-size: 16px;
    font-weight: 100;
    position: relative;
    left: 60px;
    text-indent: 20px;
}

/* Textfield place holder */
#mce-EMAIL::placeholder {
    font-size: 16px;
    font-weight: 100;
}

/* Mailchimp Subscribe button */
input.button {
    height: 105%;
    width: 186px;
    border-radius: 71px;
    color: #FFFFFF;
    background-color: #00A7FF;
    font-family: 'Spartan', sans-serif;
    font-weight: 400;
    font-size: 18px;
    position: relative;
    left: -50px;
    border: 0;
    outline: none;
}

/* Footer design */
footer {
    color: #fff;
    /* padding: 10px 0; */
    font-size: 10px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

footer .footer-Container {
    /* align-items: center; */
    margin-top: auto;
    font-weight: 100;
}

/* Set responsive design & background image for Desktop */
@media only screen and (min-width: 769px) {
    .container {
        background-image: url('img/banqzbackground.png');
    }
}

/* Set responsive design & background image for Tablets */
@media only screen and (min-width: 481px) and (max-width: 768px) {
    .container {
        background-image: url('img/banqzTabletBackground.png');
    }
}

/* Set responsive design & background image for mobile devices */
@media only screen and (max-width: 480px) {
    .container {
        background-image: url('img/banqzMobileBackground.png');
        height: 100vh;
    }

    #banqz-Title h1 {
        font-size: 20px;
    }

    #banqz-Subtitle h4 {
        font-size: 10px;
    }

    #mc_embed_signup_scroll {
        height: 40px;
    }

    #mce-EMAIL {
        height: 80%;
        width: 271px;
        border-radius: 71px;
    }

    #mce-EMAIL::placeholder {
        font-size: 10px;
    }

    /* Mailchimp Subscribe button */
    input.button {
        height: 100%;
        width: 120px;
        border-radius: 71px;
        font-size: 10px;
    }


    #logo-Img {
        max-width: 194px;
    }
}