/*
TABLE OF CONTENTS
__Code Doc Rules
______Document Guidelines
______One Line Vs Multi
__Color/Var Index
__Document Spacing/Setup
__Scroll Bar
__
__
__
__
__
__
__
__
__
__
__


KEY PHRASES TO SEARCH:
apend multibrowser styles

*/
/* ... */

/*CODE DOC RULES
Note: 
--for easy finding, search titles (from ToC) in ALL CAPS.
--End of sections is noted with ...
____________________________________________________________________
DOCUMENT GUIDELINES: 
--Width
--Height

--Color (bg then txt fill)
--Border
--Text (size, font, then etc abc order)

--Float
--Margin
--Padding
--Display
--Position
--Top/Right/Bottom/Left

--Misc. (abc order) 

--Animation
--Transition

Note: directionals always listed Top, Right, Bottom, Left

ORDER OF LISTING VARIANTS
Variable (normal)
Variable:link
Variable:hover
Variable:active
Variable:Visited
Variable:before
Variable:after
____________________________________________________________________
ONE LINE VS MULTI:
-All Lines
---*Must have an empty line above/below (exception/ see single lines)
---No empty line between the first/final property and "{"/"}"

-Single Lines
---can only have one property listed, else refer to multi
---can cluster multiple single lines with no empty lines above/below (only if closely related to eachother)

-Multi Lines
---"{" on the same line as variable, no space before, new line imediately after
---"}" a new line/no sharing the same line with anything else. No indent
---properties indented
---properties listed according to document guidelines
____________________________________________________________________
*/
/*
...
*/

/*COLOR/VAR INDEX*/
:root{
/*
    color = c
    padding = p
    margin = m
    text sizes = size
    font types = font
*/
    --c-black:#000;
    --c-white:#fff;

    --c-greyA:#262626;
    --c-greyATrans:rgba(38,38,38,0.00);
    --c-greyB:#c9c9c9;
    --c-greyC:#1d1d1d;
    --c-greyD:#808080;
    --c-greyE:#161616;
	--c-greyEtrans:rgba(71,71,71,0.00);

    --c-redA:#c41717;
    --c-redB:#ff0000;
    --c-redC:#570000;
    
    --p-pageAll:1em;
    --p-topHome:-0.5em;
    --p-2:2em;
    
    --size-1: 2.5em;
    --size-2: 2em;
    --size-3: 1.5em;
    --size-4: 1em;
    --size-5: 0.7em;
    
    --font-a:'Darker Grotesque', sans-serif;
	
	/*TransitionTimeing*/
	
}
/*
...
*/
#testTxt{
	display: flex;
	width: 100%;
	position: absolute;
	justify-content: center;
	font-size: 3em;
	color: lime;
}

/*DOCUMENT SPACING/SETUP*/
html{
    margin: 0;
    padding: 0;
	scrollbar-color: var(--c-greyA) var(--c-black);
    scroll-behavior: smooth;
    -moz-scroll-behavior: smooth;
    -webkit-scroll-behavior: smooth;
    -o-scroll-behavior: smooth;
    -ms-scroll-behavior: smooth;
}
body{
    background-color: var(--c-greyA);
    margin: 0em;
    padding: var(--p-pageAll);
    padding-bottom: 0em;
    overflow-x: hidden;
}
nav{margin-bottom: 0.5em;}

.col,.menuContainer{
    padding: 0; 
    margin: 0;
}
#pageFade{
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 10;
	opacity: 0;
	//background-color: var(--c-greyATrans);
	transition: 1.3s all ease;
	padding: var(--p-pageAll);
}
#pageFade.fullOpacity{
	opacity: 1;
	//background-color: var(--c-greyA);
	z-index: 10;
}
#pageFade.hide{
	z-index: -1;
}
#pageFade .letterhead{display: none;}

#pageFade.fadeOUT{
	background-color: var(--c-greyA);
	z-index: 10;
	transition: 600ms all;
}

#pageContainer.fadeOUT{opacity: 0; transition: 500ms opacity;}


#bgTrans{
    width: 100%;
    height: 100%;
    z-index: 10;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--c-greyA);
    animation-name: Anim_BgTrans;
    animation-duration: 1s;
}

@keyframes Anim_BgTrans{
    0%{opacity: 0}
    100%{opacity: 100%}
}

/*
...
*/

/*SCROLL BAR*/
body, #BookInfo #blurbContainer{scrollbar:var(--c-greyC) var(--c-black);}

body::-webkit-scrollbar, 
#BookInfo #blurbContainer::-webkit-scrollbar{width: 1em;}

body::-webkit-scrollbar-track, 
#BookInfo #blurbContainer::-webkit-scrollbar-track{background-color: var(--c-black);}

body::-webkit-scrollbar-thumb,
#BookInfo #blurbContainer::-webkit-scrollbar-thumb{
    background-color: var(--c-greyC);
    border-top: 2pt solid  var(--c-redA);
    border-bottom: 2pt solid  var(--c-redA);
}
/*
...
*/

/*GENERAL TEXT FORMATING*/
/*I'll start basic, then go from menu, footer, then body*/

a,a:visited,a:link,a:hover{
    transition: all 300ms;
    text-decoration: none;
    cursor: hand;
}

a:visited{color: var(--c-redA);}
a:link{color: var(--c-redA);}
a:hover{color: var(--c-white);}
a:active{color:var(--c-redB);}


p{color: var(--c-greyB);}

h1, li{font-family: var(--font-a);}

/*CURRENT PAGE LINK*/
/*
.curPage a,.curPage a:hover{
    color: inherit;
    display: flex;
    align-items: center;
}
.menuContainer .curPage a:after{ 
    border: 0.3em solid transparent;
    border-left: 0.5em solid var(--c-redA);
    
    margin-left: -0.7em;
    display: flex; 
    content: ''; 
    position: absolute;   
}
*/
.curPage{
	opacity: 0.4;
	color: var(--c-black);
}
/*MENU LOGO*/
.letterhead .txt-title{
    color: var(--c-redA);
    font-size: var(--size-3);
    text-align: left;
    text-transform: capitalize;
    font-weight: 400;
}
.letterhead .txt-subtitle{
    color:var(--c-greyB);
    font-size: var(--size-4);
    text-align: left;
    text-transform: capitalize;
    font-weight: 300;
    margin-bottom: 0;
}
.letterhead{z-index: 5;}

#titleTxtSpacer{
    font-size: var(--size-3);
    opacity: 0;
}

/*MENU HOVER EVENTS*/
.menuContainer li,.see-more{
    color:var(--c-redA);
    font-size: var(--size-4);
    list-style: none;
    text-align: left;
    text-transform: capitalize;
}
.menuContainer{
    position: absolute;
    width: 100%;
}
.menu-drop-btn{
    margin: 0em; 
    margin-top: 1.2em;
    position: relative;
    z-index: 2;
}
.menu-drop-sect{width:13em;}


.menu-drop-btn .menu-drop-title{
	-webkit-user-select: none;
	-webkit-touch-callout: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;

	transition: all 800ms ease 300ms;
}
.menu-drop-btn:hover,.menu-drop-btn .menu-drop-title:hover{color: var(--c-redB); cursor: pointer;}

.menu-drop-list{
    background-color: var(--c-greyA);
    padding: 0.3em 1em; 
    animation-name: loadIn;
    animation-duration: 2s;
}
.max-menu li{
    height:2em; 
    opacity:1; 
    transition:all 500ms ease-in-out 200ms; 
}
.min-menu li{
    height: 0em; 
    opacity:0; 
    transition:all 500ms ease-in-out 200ms;
}
#homeNav .min-menu li{height: 2em;}

.noDelay li{
    height:2em; 
    opacity:1; 
    transition:all 400ms ease-in-out 0ms; 
}
/*END MENU HOVER EVENTS*/
#footer{ margin-top: 10em;}

.footHead{
    color: var(--c-white);
    text-transform: uppercase;
    font-weight: 400;
    font-size:1.1em;
}
.footerList{
    line-height: 2;
    padding:0;
    padding-left: 1em;
    list-style: none;
    width: 100%;
}
.footerList div{width: 50%;}

.footerList a{
    color: var(--c-greyB);
    text-transform: capitalize;
    text-align: left;
    font-size: 0.9em;
}
.fContainer{
    background-image: linear-gradient(rgba(0, 0, 0, 0),#000);
    position: absolute;
    left: 0;
    bottom: auto;
    width: 100%;
    height:inherit;
    padding-top: 10em;
    padding-left: var(--p-pageAll);
}
#footer .col{
    padding: 1em;
    padding-bottom: 2em; 
    border-left:1pt solid var(--c-greyB);
}
#footer .col:nth-child(1){border-left:0pt solid var(--c-greyB);}
/*END FOOTER*/
/*BODY HOME*/
#home{
    display: flex;
    position: absolute;
    justify-content: center;
    align-items: center;
    left:0;
    top: 0;
    width: 100%;
    height: 110%;
}
#home .homeImg{
    width: 100%;
    height: 100%;
    filter: contrast(80%) brightness(0.3);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    animation-name: homeBlackOut;
    animation-duration: 10s;
    transition: 4s;
}

#homeNavContainer{
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
}
#homeNavContainer .letterhead{
    position: absolute;
    top: 0;
    left: 0;
    padding: 0;
}
#homeNav{
    margin: auto; 
    width: 100%;
    height: auto;
    transform: scale(0.7);
    z-index:3;
}

#homeNav .menuContainer{
    position: absolute;
    display: flex;
    justify-content: center;
	margin-top: 29em;
}
#homeNav .menuContainer li{text-align: center;}
#homeNav .menu-drop-title{color: var(--c-greyB);}
#homeNav .menu-drop-sect{width: 30%;}
#homeNav .menu-drop-title{font-size: var(--size-2);}
#homeNav .menu-drop-list{
    background-color: transparent;
    font-size: var(--size-3);
}

#homeNavContainer.homeFadeOut .letterhead h1{opacity: 0.4;}
#homeNavContainer.homeFadeOut .letterhead .txt-title{opacity: 0.6; color: var(--c-redC);}
#homeNavContainer.homeFadeOut .letterhead .txt-subtitle{color: var(--c-redB);}
#homeNavContainer .letterhead h1{transition: color 5s ease-out, opacity 1s ease-in 400ms;}


#homeNav.toggleOFF{
    z-index: -1;
    opacity: 0;
}
#homeNav.toggleON{
    z-index: 2;
    opacity: 1;
    transition: opacity 5s ease;
    /*delay in script*/
}
#homeNav.toggleOFF .menu-drop-btn .min-menu li{
    height: 0em; 
    opacity: 0;    
}
#homeNav.toggleON .menu-drop-btn .min-menu li{
    height: 2em; 
    opacity: 1;
    transition: opacity 2s ease 1.5s;
    
}
#clickHomePage{
    z-index: 10;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/*END BODY HOME*/
/*SKIP ANIM*/
#skipLoad{
    position: fixed;
    bottom: 0;
    right: 0;
    padding: var(--p-pageAll);
    color: var(--c-greyB); 
    font-style: italic;
    opacity: 1;

    animation-name: showMenuHint;
    animation-duration: 3s;
   
    transition: 2s;
}
#skipLoad:before{content: 'click to skip fade-in';}
#skipLoad.skipAnim{opacity: 0; animation: none;}

.skipAnim .homeImg{
    animation-duration: 3s;
}
.skipAnim #homeNav,.skipAnim .menu-drop-title{transition: 2s;}
.skipAnim #homeNav.toggleON .menu-drop-btn .min-menu li
{
    transition: 500ms;
    transition-delay: 100ms;
	height: 2em;
}

/*END SKIP ANIM*/
/*BODY SECTION GALLERY*/
#galNav{
	display: flex;
	justify-content: center;
	width: 100%;
	margin-top: 1em;
	z-index: 10;
	-webkit-user-select: none;
	-webkit-touch-callout: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;

	transition: all 800ms ease 300ms;

}
#galNav #back,#galNav #next,#galNav #galSlide{
	width: 4%;
	cursor: pointer;
	transition: 300ms all;
	display: flex;
	justify-content: center;
}

#galNav #back::after, #galNav #next::after{display: flex; content: ''; border: 0.5em solid transparent;}
#galNav #back::after{border-right: 0.75em solid var(--c-greyE);}
#galNav #next::after{border-left: 0.75em solid var(--c-greyE);}
#galNav #galSlide::after{
	display: flex;
	content: '';
	width: 80%;
	height: 60%;
	background-color: var(--c-greyE);
}
#galNav.toggleON #galSlide::after{height: 80%;}

#galNav #back:hover::after{opacity: 1; border-right-color: var(--c-redA);}
#galNav #next:hover::after{opacity: 1; border-left-color: var(--c-redA);}
#galNav #galSlide:hover::after{opacity: 1; background-color:  var(--c-redA);}



#galSlide{
	display: flex;
	align-items: center;
	justify-content: center;
}

#galNav #galSlide, 
#galNav.toggleON #back, 
#galNav.toggleON #next {opacity: 0.5;}

#galNav #galSlide:hover, 
#galNav.toggleON #galSlide,
#galNav #back:hover, 
#galNav #next:hover, 
#galNav.toggleON #back:hover, 
#galNav.toggleON #next:hover{opacity: 1;}


#pageContainer{
    animation-name: loadIn;
    animation-duration: 1s;
}
#pageContainer.differentFade{
    animation-name: none;
}
/*for #clickHint, see style2*/

.gallery-parent{
    width: 100%;
    height: 40vw;
    display: block;
    position: relative;
    margin-top: 2em;
    animation-name: loadIn;
    animation-duration: 2s;
}

#photoStrip{scrollbar-color: var(--c-redA) var(--c-greyA);}
#photoStrip::-webkit-scrollbar {height: 2em;}

#photoStrip::-webkit-scrollbar-thumb {background-image: linear-gradient(transparent 50%,var(--c-redA) 50%,var(--c-redA) 100%);}

#sectTitle{
    position: absolute;
    width: 100%;
    height: 100%;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: 0em;
    transition: opacity 1s ease 300ms, padding 1s;
}
#sectTitle #gTitle h1,#sectTitle #titleTxtSpacer h1{
    color: var(--c-redA);
    text-transform: uppercase;
    font-weight: 400;
    font-size: var(--size-3);
}
#sectTitle div{height: 35%;}
#sectTitle #gTitle h1{
    background: var(--c-black);
    padding: 0.1em 1em;
}
#sectTitle #titleTxtSpacer{opacity: 0;}

#sectTitle.fadeOUT{
    opacity: 0; 
    padding-left: 5em; 
    transition: all 700ms ease 200ms, padding 1s;
}
#loadIMG{
    width: 100%;
    height: 100%;
    background-color: var(--c-greyA);
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: center;
	position: absolute;
	z-index: -1;
}
#galBOOK1 #loadIMG{background-position: left;}

#slideClickExtend{
	display: none;
	content: '';
	width: 40%;
	height: 100%;
	z-index: 10;
	position: absolute;
	top: 0;
	left: 55%;
	z-index: 11;
	cursor: pointer;
}

#fullSlide,#frontSlide{
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: var(--c-greyA);
    background-position: center;
}
#frontSlide{
    position: absolute;
    top: 0;
    background-color: var(--c-greyD);
    filter: blur(0px) brightness(0.3) saturate(0.7);
    transition: filter 1.5s, opacity 1.5s, background-color 1.5s;
}
#frontSlide.toggleSlideReady{
	transition: opacity 400ms;
	opacity: 0;
    filter: blur(0px) brightness(1) saturate(1);
    background-color: var(--c-greyA);

}
#frontSlide.toggleSlideReady.transOUT{
	transition: opacity 0s;
	opacity: 1;
    filter: blur(0px) brightness(1) saturate(1);
	
}

.frontOUT{
    opacity: 0;
    filter: blur(0px) brightness(1) saturate(1);
    transition: all 1s ease 1s;
}


#stripContainer{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

#photoStrip{
    width: 100%;
    height: 17vw;
    position: relative;
    overflow-x: scroll;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    transition: all 1s;
    margin-top: 15em;
	z-index: 4;
}
#stripBtn{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}
.option,.see-more{    
    height: 100%;
    width: 20vw;
}
.option{
    background-color: transparent;
    border: none;
    float: left;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 1;
    transition: all 500ms;
    position: relative;
	cursor: grab;
}
.option:before{
    content: '';
    display: flex;
    opacity: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    transition: all 500ms;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    background-size: 100%;
}
.noOption:hover:before{
    content: '';
    opacity: 0;
    transition: all 200ms;
}
.noOption, .noOption:hover, .noOption:focus, .noOption:active {border: none;}

.transOUT{
    margin-right: 100%;
    transition: all 1.5s;
}
.transIN{
    margin-right: 0%;
    transition: all 1s;
}
/*BOOK GALLERY */
#galBOOK1 #fullSlide,#galBOOK1 #frontSlide{width: 55%; background-position: center; }

#BookInfo{
    position: relative;
    float:right;
    width: 44%;
    height: 100%;
    z-index: 10;
}
#BookInfo.transIN{z-index: 0;}

#BookInfo #blurbContainer{
    overflow-y: auto;
    height: 100%;
    margin-right: 1%;
    padding-bottom: 4em;
}

#BookInfo a{
    z-index: 50; 
    padding: 0.5em; 
    border: 1pt solid var(--c-greyD);
    
}
#BookInfo #blurbContainer{
    padding-left: 0;
    padding-right: var(--p-pageAll);
    
}
.transIN .bookBlurbT, 
.transIN .bookBlurbB,
.transIN a{
    color: var(--c-greyD);
    opacity: 0.2;
    transition: all 2s;
}
.bookBlurbT,.bookBlurbB{transition: all 1s; opacity: 1;}

/*ABOUT SECTION*/
#about{height: auto;}
#blurbContainer{
    padding: 0em 16em;
}
.blurbB,.bookBlurbB{
    text-align: justify;
    color: var (--c-greyB);
    font-size: var(--size-4);
    line-height: 2em;
    //padding: 0em 3.7em;
    padding: 0em;
}
.blurbT,.bookBlurbT{
    color: var(--c-white);
    font-weight: 100;
    font-size: var(--size-3);
	padding-top: 4em;
}
.bookBlurbT{padding-top: 0em; }
.blurbTitle_1{padding-top: 1em;}
.bookBlurbT .blurbTitle_1{padding-top: 0;}
.blurbItem span,.bookBlurbItem span{
    display: flex;
    height: 2em;
}
.blurbItem span:nth-child(1),.bookBlurbItem span:nth-child(1){height: 1em;}

.blurbB .hintContact .hintContact{display: none;}
.blurbB .linkContact:hover .hintContact{display: block;}

.creditsContact{color: var(--c-redA); pointer-events: none;}

#JBProfile{
	width: 100%;
	height: 30em;
	margin-top: 5em;
	background-position: left;
	background-repeat: no-repeat;
	background-size: contain;
    position: relative;
}
/*END ABOUT SECTION*/
/*CONTACT PAGE*/
#contactForm{
    color: var(--c-greyD);
    font-family: var(--font-a);
    font-size: var(--size-4);

}
#userName,#userEmail,#userSubject,#userMessage,#userSubmit{font-family: monospace;}
#userName{
    width: 100%;
    border: 0.2em solid white;
    margin-bottom: 1em;
    font-size: var(--size-4);
}
#userEmail{
    width: 100%;
    border: 0.2em solid white;
    margin-bottom: 1em;
}
#userSubject{
    width: 100%;
    border: 0.2em solid white;
    margin-bottom: 1em;
    font-size: var(--size-4);
}
#userMessage{
    width:100%;
    height:30%;
    border: 0.2em solid white;
    margin-bottom: 1em;
    font-size: var(--size-4);
}
#userSubmit{
    content: '';
    display: flex;
    border: 0.2em solid white;
    font-size:1.2em;
    color: var(--c-redA);
    background-size:1.5em;
    background-repeat: no-repeat;
    background-position: center right;
    background-image: url(../photos/Send1.png);
    margin-top: ;
}
/*END CONTACT PAGE*/
/*END BODY SECTION*/
/*PHONE ALERT GRAPHIC*/
#phoneAlert{
    width: 100%;
    height: 100%;
    //background-color: var(--c-greyC);
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
    align-items: center;
    justify-content: center;
}
#phoneAlert #logo{
    position: fixed;
    top: 0;
    left: 0;
    padding: var(--p-pageAll);
    width: 25em;
    font-size: var(--size-2);
    animation-name: phoneLogoAnim;
    animation-duration: 2s;
}
#phoneAlert:before{
    width: 50em;
    height: 36em;
    //background-color: var(--c-white);
    margin-top: 3em;
    content: '';
    display: flex;
    position: absolute;
    animation-name: loadIn;
    animation-duration: 3s;
}
#phoneGif{
    z-index: ;
    width: 100%;
    height: 100%;
    background-image: url(../img/phone/phoneAnim2.gif);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
#alertTxt{
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    justify-content: center;
    align-items: center;
}
#alertTxt h1{
    color: var(--c-redA);
    position: absolute;
    bottom: 1em;
}
#phoneAlert.hideAlert{
    display: none;
    z-index: 0;
}
#phoneAlert.showAlert{
    display: flex;
    z-index: 5;
}

/*ADDED WITH JAVASCRIPT*/
.cancelScroll{overflow-y: hidden; }
.envokeScroll{overflow-y: scroll; }
.hidefooter{display: none; height: 0em;}
.hideabout{display: none; height: 0em;}

/*ANIMATIONS*/
@keyframes homeBlackOut{
    0%{filter: contrast(100%) brightness(1); }
    40%{filter: contrast(100%) brightness(1); }
    100%{filter: contrast(80%) brightness(0.3); }
}

@keyframes showMenuHint{
    0%{opacity: 0;}
    30%{opacity: 0;}
    100%{opacity: 1;}
}

@keyframes loadIn{
    0%{opacity: 0;}
    20%{opacity: 0;}
    100%{opacity: 1;}
}
@keyframes phoneLogoAnim{
    0%{opacity: 0; margin-left: -5em;}
    100%{opacity: 1;margin-left: 0em;}
}
@keyframes slideToolTip{
    0%{opacity: 0; color: white;}
    60%{opacity: 0; color: white;font-size:1em;}
    65%{font-size:1.5em;opacity: 1; color: white;}
    80%{font-size:1em;}
    100%{opacity: 1;}
}
/*END ANIMATIONS*/


#vid, video{
	z-index: -2;
	position: absolute;
	
}
/*MEDIA SETTINGS*/
@media (min-width:100px){
    html{font-size: 0.6rem;}
	#homeNav .menuContainer{margin-top: 11em;}
	
	#homeNav.toggleON .menu-drop-btn .min-menu li, #homeNav .menu-drop-btn .max-menu li{height: ;}
	
    .gallery-parent{
        margin-top: 4em;
        height: 45vw;
    }
    .letterhead{padding-right: 2em;}
    .menu-drop-sect{width:8.5em;}
    #clickHint{right:-10em; top:0em;}

  
}
@media (min-width:576px){
    html{font-size: 0.7rem;}
	#homeNav .menuContainer{margin-top: 6em;}

    .gallery-parent{
        margin-top: 4em;
        height: 42vw;
    }
    .letterhead{padding-right: 2em;}
    .menu-drop-sect{width:9.5em;}
    #clickHint{right:-8em; top:-4em;}
}

@media (min-width:620px){
    html{font-size: 0.7rem;}
	#homeNav .menuContainer{margin-top: 10em;}

    .gallery-parent{
        margin-top: 4em;
        height: 42vw;
    }
    .letterhead{padding-right: 2em;}
    .menu-drop-sect{width:9.5em;}
    #clickHint{right:-8em; top:-4em;}
}

@media (min-width:768px){
    html{font-size: 0.8rem;}
	#homeNav .menuContainer{margin-top: 8em;}

    .gallery-parent{
        margin-top: 4em;
        height: 47vw;
    }
    .letterhead{padding-right: 2em;}
    .menu-drop-sect{width:10em;}
    #clickHint{right:-15em; top:-5em;}

}
@media (min-width:960px){
    html{font-size: 0.9rem;}
	#homeNav .menuContainer{margin-top: 25em;}

    .gallery-parent{
        margin-top: 3em;
        height: 50vw;
    }
    .letterhead{padding-right: 2em;}
    .menu-drop-sect{width:10em;}
    #clickHint{right:-10em; top:-3em;}

}
@media (min-width:1200px){
    html{font-size: 1rem;}
	#homeNav .menuContainer{margin-top: 26em;}

    .gallery-parent{
        margin-top: 3em;
        height: 40vw;

    }
    .letterhead{padding-right: 3em;}
    .menu-drop-sect{width:13em;}
    #clickHint{right:-10em; top:-3em;}

}
@media (min-width:1600px){
    html{font-size: 1rem;}
	#homeNav .menuContainer{margin-top: 20em;}

    .gallery-parent{
        margin-top: 1.5em;
    }
    .letterhead{padding-right: 8em;}
    .menu-drop-sect{width:12em;}


}

@media (min-width:2000px){
    html{font-size: 2rem;}
	#homeNav .menuContainer{margin-top: 15em;}

	.gallery-parent{
        margin-top: 1em;
        height: 47vw;
    }

    .letterhead{padding-right: 5em;}
    .menu-drop-sect{width:13em;}

}
@media (min-width:4000px){
    html{font-size: 4rem;}
	#homeNav .menuContainer{margin-top: 20em;}

	.letterhead{padding-right: 4em;}
    .menu-drop-sect{width:13em;}

}



/*
.fContainer::after{
    content: 'Website by Sarah Meadows';
    display: flex;
    position: absolute;
    bottom: 0;
    right: 0;
    color:#ffffff;
    opacity: 0.5;
    margin: 2em;
    
}
*/
