/*
Coder: klp
Date: 7/31/22
Site: tnt
App: Bootstrap Grid Demo

*/
body{
    font-family: 'Roboto Condensed', sans-serif;
}
/*-------- navbar --------*/
img#mastheadIcon{
    width: 60px;
    height: auto;
    margin-right: 20px;
    background-color: #e6e6e7;
    border-radius: 50%;
}

/*-------- jumbotron --------*/
div#jumbotron{
    background-image: url('../images/spyTech.webp');
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 200px;
}

div#jt-text{
    max-width: 700px;
    /* width: 400px; */
    margin-left: auto;
    margin-right: auto;
    
}

div#jt-text h1{
    font-family: 'Share Tech Mono', monospace;
}

div#jt-text h1, div#jt-text h4{
    text-shadow: 0px 2px 2px black;
}

div#info{
    margin-top: 10px;
    border-radius: 10px;
    border: 1px solid lightgray;
}

div#info a{
    text-decoration: none;
    font-weight: bold;
}

/*-------- introDiv, footer --------*/
div#introDiv, footer p{
    max-width: 800px;
}

figure#introFig{
    width: 40%;
}

img#introFigImg{
    width: 100%;
    height: auto;
}

div#twoColumnApp{
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

div#badInputDiv{
    display:none;
}

details#eureka{
    display: none;
}

div#results{
    font-family: 'Share Tech Mono', monospace;
}

/*-------- google fonts --------*/
.googleFont1{
    font-family: 'Share Tech Mono', monospace;
}

.googleFont2{
    font-family: 'Roboto Condensed', sans-serif;
}

/*-------- colors --------*/
.text-custom-color1{
    color:#F7F6DC;
}

.text-custom-color2{
    color: #98C5F2;
}

.text-custom-color3{
    color: #f9cad9;
}

.text-custom-color4{
    color: #8bb4f9;
}

.text-custom-color5{
    color: #efd68f;
}

.bg-custom-color1{
    background-color: #ABE2E4;
}

.bg-custom-color2{
    background-color: #265155;
}

.bg-custom-color3{
    background-color: #f9cad9;
}

.bg-custom-color4{
    background-color: #8bb4f9;
}

.bg-custom-color5{
    background-color: #efd68f;
}



/*-------- footer --------*/
footer{
    font-size: .8em;
}

footer div#footerContent{
    max-width: 500px;
}

footer li a img{
    width: 50px;
    height: auto;
}

/*--------- MEDIA QUERIES ----------*/
/*showing the BS5 breakpoints: https://getbootstrap.com/docs/5.0/layout/breakpoints/*/
@media (max-width: 576px) {/*x-small*/
    p, figcaption{
        font-size: .8em;
    }
    nav {
        border-bottom: 8px gray solid;
    }
}

@media (min-width: 577px) {/*small*/
    /*400px or less*/
    nav {
        border-bottom: 8px red solid;
    }

    details#eureka{
        display:block;
    }

    div#jt-text{
        width: 300px;
    }

}

@media (min-width: 768px) {/*medium*/
    nav {
        border-bottom: 8px orange solid;
    }
}

@media (min-width: 992px) {/*large*/
    nav {
        border-bottom: 8px yellow solid;
    }

    /*adjusts the position of the jtron image; may need adjustments in location or query area*/
    div#jumbotron{
        background-position: 0px -120px;
    }
}

/*begin to show inline navigation and remove burger menu icon*/
@media (min-width: 1200px) {/*extra large*/
    nav {
        border-bottom: 8px green solid;
    }
}

@media (min-width: 1400px) {/*extra extra large*/
    nav {
        border-bottom: 8px blue solid;
    }

    /*adjusts the position of the jtron image; may need adjustments in location or query area*/
    div#jumbotron{
        background-position: 0px -200px;
    }
}