body {
    background:
            linear-gradient(
                    rgba(0, 0, 0, 0.80),
                    rgba(0, 0, 0, 0.90)
            ),
            url('/images/quincy-il-apartments.jpg') no-repeat center center fixed;
    background-size: cover;
}

p, a, div, label {
    font-size: 18px;
    font-family: 'Karla', sans-serif;
}

h1 {
    font-size: 52px;
}

h3 {
    font-size: 18px;
}

.salt {
    color: white;
}

.lime {
    color: limegreen;
}
a.lime:hover {
    color: lime;
}

.centerAlign {
    text-align: center;
}

.rightAlign {
    text-align: right;
}

.rockSalt {
    font-family: 'Rock Salt', cursive;
}

input, textarea {
    background:
            linear-gradient(
                    rgba(255, 255, 255, 0),
                    rgba(255, 255, 255, 0)
            );
    border: 3px solid white;
    padding: 10px;
    font-size: 20px;
    color: white;
    width: 100%;
}

input:focus, textarea:focus {
    outline: none;
}

label {
    width: 100%;
}

.noPad {
    padding: 3px;
}

/** Mobile */
@media only screen and (max-width: 767px) {
    h1 {
        font-size: 36px;
    }

    #headerDiv {
        text-align: center;
        margin-top: 10px !important;
    }

    #footer {
        margin-top: 75px !important;
    }

    .container {
        padding: 50px;
    }

    #cardElement, #memoBox {
        width: 280px !important;
    }

    input, button {
        width: 100% !important;
    }
}

::placeholder {
    color: lightgray;
}

#headerDiv {
    margin-top: 150px;
}

#footer {
    margin-top: 250px;
}

#submitButton {
    height: 54px;
    border: 3px solid limegreen;
    color: limegreen;
    background: none;
    width: 150px;
    transition: all 0.3s;
}

#submitButton:hover {
    background: limegreen;
    color: white;
}

#submitButton:active, #submitButton:focus {
    outline: none !important;
    color: white;
}

#submitButton:active {
    border: 3px solid white;
    background: lime;
    width: 100%;
}

@keyframes flickerAnimation {
    0%   { opacity:1; }

    95%  { opacity:1; }
    96%  { opacity:0; }
    97%  { opacity:1; }

    98%  { opacity:1; }
    99%  { opacity:0; }
    100% { opacity:1; }
}
@-o-keyframes flickerAnimation{
    0%   { opacity:1; }
    96%  { opacity:1; }
    98%  { opacity:0; }
    100% { opacity:1; }
}
@-moz-keyframes flickerAnimation{
    0%   { opacity:1; }
    96%  { opacity:1; }
    98%  { opacity:0; }
    100% { opacity:1; }
}
@-webkit-keyframes flickerAnimation{
    0%   { opacity:1; }
    96%  { opacity:1; }
    98%  { opacity:0; }
    100% { opacity:1; }
}

#cardElement {
    border: 3px solid white;
    height: 53px;
    vertical-align: center;
    width: 400px;
}

label {
    white-space: nowrap;
}

/*.animateFlicker {*/
    /*-webkit-animation: flickerAnimation 7s infinite;*/
    /*-moz-animation: flickerAnimation 7s infinite;*/
    /*-o-animation: flickerAnimation 7s infinite;*/
    /*animation: flickerAnimation 7s infinite;*/
/*}*/

.StripeElement {
    padding: 10px;
}