@charset "utf-8";
/*
File: tnt_site_styles_2019.css
Site: TNT
Date: 09/7/19
Author: KLP
Comments:


*/

/*--------- MOBILE DESIGNS: FIRST ----------*/

/*--------- Page-Wide Styles ----------*/
*{
    box-sizing: border-box; /*see p. 356+LWD text*/
    margin: 0px;
}

html{
    font-size: 100%;
}

body {
    background-color: #a5f0d2;
    font-family: 'Barlow Condensed', sans-serif;
}

header#masthead, div#heroArea, main, footer{
    padding: 20px;
}

nav ul li, footer ul li{
    display: inline;
    margin-right: 15px;
}

/*--- specific tag styles ---*/
h1, h2, h3, h4, h5, h6{
    font-family: 'Acme', sans-serif;
    color: #703f45;
}

p{
    margin-bottom: 10px;
}

a{
    text-decoration: none;
}

a:hover{
    text-decoration: underline;
    font-weight: bold;
}

details{
    margin-bottom: 20px;
}

summary{
    font-variant: small-caps;
    font-size: 3vh;
    margin-bottom: 10px;
}

canvas{
    border: 1px solid gray;
}

div#myCanvas{
    text-align: center;
}

/*--- detail and summary ---*/
details div{
    background-color: #fffce6;
    padding: 15px;
}

details hr{
    margin-top: 5px;
}

/*---- Masthead -----*/
header#masthead{
    background-color: #fffce6;
    color: #703f45;
}

header img{
    width: 90px;
}

header img#mastheadIcon, div#mastheadText{
    float: left;
}

header img#mastheadIcon{
    
}

header img#burgerIcon{
    float: right;
    display: none;
    
}

/*---nav bar---*/
header nav{
    clear:left;
}

header nav ul{
    padding-left: 0px;
}

header nav ul li{
    display: inline;
}

header nav ul li a{
    color: #703f45;
}

/*---- heroArea -----*/
div#heroArea{
    background-color: #1c9920;
    color: #703f45;
}

div#heroArea h1{
    display: inline;
    margin-right: 10px;
}

div#heroArea img.profile{
    width: 50px;
    vertical-align:bottom;
}

/*---- main -----*/
main{
    background-color: #a5f0d2;
}

main div#content{
/*    background-color: pink;*/
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

main article h2{
    margin-top: 15px;
    margin-bottom: 10px;
}

main div#content div#results{
    margin-left: 20px;
}


/*---- Classes -----*/
.profile {
    /*our code goes here*/
    background-color: #FFF;
    border-radius: 30%;
    border: solid 1px black;
    width: 100px;
    padding: 10px;
    
}

.future img {
    /*our code goes here*/
    cursor: auto;
    opacity: .3;
}

/*---- App-Related Styles -----*/
div#apps {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

figure {
    width: 120px;
    margin: 10px;
/*    background-color: pink;*/

}

figure img{
    margin-left: 10px;
}

figure figcaption {
    text-align: center;
    font-style: italic;
/*    background-color: yellow;*/
}

/*---- Form-Related Styles -----*/
form {
    width: 300px; /*Fits smallest Firefox window size*/
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
}

form fieldset textarea{
    width: 100%;
    height: 100px;
    margin-bottom: 10px;
}

form fieldset{
    border-radius: 10px;
    background-color: #FFFCE6;
    padding: 10px;
}

form fieldset input[type=button]{
    padding: 10px;
    border-radius: 10px;
}

form fieldset input[type=password]{
    padding: 5px;
}

/*---- Footer Styles -----*/
footer{
    background-color: #703f45;
    color: #FFFCE6;
}

footer a{
    color: #f4e948;
}
footer ul{
    text-align: center;
    margin-bottom: 10px;
}

footer p{
    text-align: center;
}


/*---- Media Queries -----*/

@media (min-width: 200px) {
    header {
        border-bottom: 5px gray solid;
    }
    
    header div#mastheadText{
        font-size: 80%;
    }
}

@media (min-width: 400px) {
    header {
        border-bottom: 5px black solid;
    }
    
    header div#mastheadText{
        font-size: 100%;
    }
}

@media (min-width: 600px) {
    header {
        border-bottom: 5px red solid;
    }
}

@media (min-width: 800px) {
    header {
        border-bottom: 5px blue solid;
        height: 120px;
    }
    
    header nav{
        clear:none;
        margin-top: 15px;
        float: right;
        margin-left: 20px;
    }
}

@media (min-width: 1000px) {
    header {
        border-bottom: 5px green solid;
    }
}

@media (min-width: 1200px) {
    header {
        border-bottom: 5px orange solid;
    }
}

@media (min-width: 1400px) {
    header {
        border-bottom: 5px yellow solid;
    }
}

@media (min-width: 1600px) {
    header {
        border-bottom: 5px magenta solid;
    }
}
