/*
File: movie_styles_2019.css
Site: TNT
Date: 09/17/19
Author: KLP
Comments:
Styles for movie clips in general

*/
header #mastheadText p::before {
    content: "";
}

/*--- Hero Area Styles---*/
div#heroArea {
    padding: 20px;
    height: 130px;
    background-image: url(../images/crowd.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}

div#heroArea h1 {
    font-family: 'Boogaloo', cursive;
    font-size: 40px;
    margin-top: 0px;
    margin-bottom: 10px;

}

div#heroArea img {
    width: 50px;
    height: auto;
    margin-bottom: -10px;
    margin-left: 10px;
}

/*--- Hero Area Styles---*/

div#heroArea h1,
div#heroArea p {
    color: #FFF5BC;
}

div#heroArea h1 {
    text-shadow: 2px 2px black;
}

div#heroArea p {
    text-shadow: 2px 2px black;
}

main {
    min-height: calc(85vh - 125px);
    background-color: #DCEBF8;
}

main details summary {
    font-style: italic;
    color: #144C87;
    font-weight: bold;
}

#movieClip, #movieClip2 {
    width: 100%;
    margin: 0px auto 0px auto;
    border: 10px solid #888;
    text-align: center;
    background-color: black;
    margin-bottom: 15px;
}

#movieWarning {
    text-align: center;
    color: red;
    font-weight: bold;
}

#credits {
    text-align: center;

}

.alt-mobile {
    display: block;
}

.not-mobile {
    display: none;
}

div#movieClip video{
    width: 90%;
}

@media(min-width: 200px){
    /*gray band*/
    main details pre{
        font-size: 50%;
    }
}

/*black band*/
@media (min-width: 400px) {
    header h1::after {
        content: "";
    }
    
    body header#masthead div#mastheadText p#headerParagraph{
/*        background-color: yellow;*/
        font-size: 14px; 
    }
    main details pre{
        font-size: 60%;
    }    
}

@media (min-width:550px){
	.not-mobile {
        display: block;
    }
    
    .alt-mobile {
        display: none;
    }
}

@media (min-width: 600px){
    /*red band*/
    main details pre{
        font-size: 80%;
    } 
    .not-mobile {
        display: block;
    }
    
    .alt-mobile {
        display: none;
    }
}

@media (min-width: 800px) {
    /*blue band*/
/*
    .not-mobile {
        display: block;
    }
*/

/*
    .alt-mobile {
        display: none;
    }
*/
    div#movieClip video{
        width: 500px;
    }
    main details pre{
        font-size: 100%;
    }

}

@media (min-width: 1200px) {

    /*green*/
    main div#content details div p {
        font-size: 18px;
        /*        background-color: pink;*/

    }
    div#movieClip, div#movieClip2{
        width: 700px;
    }
    
    main details pre{
        font-size: 120%;
    }
}
