/*----- general styles -----*/
html{
    background-color: #e5ecff;
}

body{
    background-color: white;
    padding: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;
    box-shadow: 0px 0px 80px 0px black;
}

h1, h2, h3, h4, summary{
    font-family: 'Acme', sans-serif;
}

p, a, figcaption, details{
   font-family: 'Anek Latin', sans-serif; 
}

.specialty-font-1, p.specialty-font-1 a{
    font-family: 'Luckiest Guy', cursive;
}

/*----- nav styles -----*/
nav{
    background-color: #B2CDE0;
    padding: 10px;
    margin-left: -20px;
    margin-right: -20px;
    margin-top: -20px;
}

img#mastheadIcon{
    width: 60px;
    height: auto;
    margin-right: 20px;
}

a#iconLink{
    text-decoration: none;
}

a.navbar-brand{
    text-decoration: none;
    font-family: 'Luckiest Guy', cursive;
    font-size: 2em;
    color: #4472ED; /*match icon color*/
}

nav div#navLinks{
    display: inline-block;
}

div#navLinks ul li, footer ul li{
    display: inline;
    text-decoration: none;
    margin-right: 20px;
}

div#navLinks ul li a{
    text-decoration: none;
    font-size: 1.1em;
}

div#navLinks ul li a:hover{
    font-weight: bold;
}

a.active{
    font-weight: bold;
}

/*----- jumbotron styles -----*/
div#jumbotron{
    color: white;
    text-align: center;
    background-color: orange;
    padding: 20px;
    margin-left: -20px;
    margin-right: -20px;
    background-image: url("../images/greenDigitalBg.jpg");
    position: relative;
}

div#jumbotron h1, h4{
    margin-top: 0px;
    margin-bottom: 0px;
}

input#addBtn{
    color: white;
    background-color: #01AF01;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
}

img.jtronImg{
    float: left;
    width: 120px;
    height: auto;
    border-radius: 50%;
    border: white 2px solid;
    margin-right: 20px;
}

figure#stoogeBtn{
    /*set parent to relative*/
    position: absolute;
    width: 90px;
    height: auto;
    right: 0px;
    bottom: 0px;
}

figure#stoogeBtn img{
    width: 100%;
    cursor: pointer;
}

div#jtText{
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/*----- content styles -----*/

div#aboutDiv{
    margin-top: 20px;
    
}

div#aboutDiv p, div#aboutDiv li{
    font-size: .8em;
}

div#primaryContent{
    background-color: inherit;
    
}

.stickyFooter{
    min-height: calc(50vh - 70px);
}

div#primaryContent p{
    font-weight: bold;
    color: green;
    font-size: 1.2em;
    font-family: monospace;
}

/*----- footer styles -----*/
footer{
    clear: both;
    border-top: 1px #DDD solid;
    text-align: center;
    height: 150px;
    margin-top: 20px;
    
}

footer p{
    font-size: .8em;
    color: #BBB;
}

footer a{
    text-decoration: none;
    color: blue;
}

footer a:hover{
    font-weight: bold;
}