/*!
 * Phishing Landing Page
 * Code licensed under TA
 */

 body, html {
    width: 100%;
    height: 100%;
}
.site {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    background: url(./bg.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center bottom;
    -webkit-background-size: auto 100%;
    -moz-background-size: auto 100%;
    background-size: auto 100%;
    -o-background-size: auto 100%;
}
.overlay {

    /* background-color: rgb(0, 0, 0); */
    /* background-color: rgba(0, 0, 0, 0.6); */
    background-color: rgba(255, 255, 255, 0.741);
    -webkit-background-size: auto 100%;
    -moz-background-size: auto 100%;
    background-size: auto 100%;
    -o-background-size: auto 100%;
}
body, h1, h2, h3, h4, h5, h6 {
    font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
}
.container {
    text-align: center;
    /* color: #f8f8f8; */
    color: #000;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}
.intro-message {
    position: relative;
    margin: auto;
    padding: 2%;
}
.intro-message > h1 {
    margin: 0;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.6);
    font-size: 3em;
}
.intro-divider {
    width: 100%;
    border-top: 1px solid #f8f8f8;
    border-bottom: 1px solid dimgrey;
}
.intro-message > h2 {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}
.intro-message > h3 {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}
.intro-content > h4 {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}
.intro-message > h2 {
    font-size: 2em;
    line-height: 1.625;
    /* color: #7DD6F3; */
    color: #ff0000;
}
.intro-message > h3 {
    font-size: 1.5em;
    line-height: 1.625;
    color: #ff0000;
}
.intro-content > h4 {
    font-size: 1.5em;
    line-height: 1.625;
    color: #ff0000;
    text-align: left;
}
.intro-content {
    position: relative;
    padding-top: 1%;
    padding-bottom: 1%;
    text-align: left;
}
.intro-content .tel {
    color: #7DD6F3;
    font-size: 2em;
    font-weight: 400;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.6);
}
.intro-content .address {
    color: #fff;
    font-size: 1.6em;
    font-weight: 400;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.6);
}
.intro-footer {
    font-size: 1em;
    text-align: center;
}
.intro-footer .text-muted {
    color: #f5f5f5;
    font-weight: normal;
}

footer {
    padding: 50px 0;
    background-color: #f8f8f8;
}

@media (min-width:769px) {
    .site,
    .overlay {
        -webkit-background-size: cover;
        -moz-background-size: cover;
        background-size: cover;
        -o-background-size: cover;
    }
    .intro-divider {
        width: 80%;
        border-top: 1px solid #f8f8f8;
        border-bottom: 1px solid dimgrey;
    }
    .intro-message > h1 {
        font-size: 5em;
    }

    .intro-content .tel {

        font-size: 3em;

    }
    .intro-content .address {

        font-size: 2em;

    }
}
