#background-video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: static;
  display: block;
  z-index: -1;
  font-size: 0;
}

#contentbox {
  width: 100vw;
  height:  100vh;
  position: relative;
  background-color: white;
  display:  block;
  z-index: 50;
  
}

#statements {
  width: 100vw;
  text-align: center;
}

#infobar {
  position: absolute;
  max-width: 28vw;
  background-color: rgba(255, 255, 255, 0.7);
  opacity: .7;
  top: 0;
  right: 0;
  z-index: 98;
  padding: 0px 20px;
  border-bottom-left-radius: 2px;
  display: block;
  box-shadow: -3px 3px 4px 1px rgba(0, 0, 0, 0.05);
}

#arttitle {
  font-size: 20px;
  font-family: 'Darker Grotesque,' Garamond, Tahoma, sans-serif;
  padding: -5px;

  height: 100%;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}


a.info {
  display:  block;
  font-size: 15px;
  line-height: 0px;

}

img.full {
  position: relative;
  top: 0px;
  object-fit: cover;
  width:  100vw;
  height: 100vh;
  
}

img.fheight {
  position: relative;
  top: 0px;
  object-fit: contain;
  height: 100%;

}






/*art description styling*/
#artdescription {
  /* div content box for descriptions*/
}

.art {
  /*font family*/
}

.art.title {

}

.art.date {

}

.art.materials {

}

.art.description {

}


/**
 *great tutorial on footnotes
 * https://www.sitepoint.com/accessible-footnotes-css/
 * courtesy Kitty Giraudel
 */

article {
  counter-reset: footnotes;
}

/**
 * Inline footnotes references
 * 1. Increment the counter at each new reference
 * 2. Reset link styles to make it appear like regular text
 */
a[aria-describedby="footnote-label"] {
  counter-increment: footnotes; /* 1 */
  text-decoration: none; /* 2 */
  color: inherit; /* 2 */
  cursor: default; /* 2 */
  outline: none; /* 2 */
}

/**
 * Actual numbered references
 * 1. Display the current state of the counter (e.g. `[1]`)
 * 2. Align text as superscript
 * 3. Make the number smaller (since it's superscript)
 * 4. Slightly offset the number from the text
 * 5. Reset link styles on the number to show it's usable
 */
a[aria-describedby="footnote-label"]::after {
  content: '[' counter(footnotes) ']'; /* 1 */
  vertical-align: super; /* 2 */
  font-size: 0.5em; /* 3 */
  margin-left: 2px; /* 4 */
  color: blue; /* 5 */
  text-decoration: underline; /* 5 */
  cursor: pointer; /* 5 */
}

/**
 * Resetting the default focused styles on the number
 */
a[aria-describedby="footnote-label"]:focus::after {
  outline: thin dotted;
  outline-offset: 2px;
}

#footnote-container :target {
  background: rgb(255, 194, 148);
}

#footnote-style {
  font-size: .8em;
  color: dimgray;
}

.visually-hidden {
  position: absolute;
  clip: rect(0 0 0 0);
  visibility: hidden;
  opacity: 0;
}

#sectionbreak {
  margin: auto;
  width: 80vw;
  height: 10vh;
  border-bottom: dashed 1px gray;
}


/*start of code for subpages*/

hr {
  margin: 20px 10%;
  border: solid .5px rgba(0, 0, 0, 0.2);
}

.desctext {
  padding: 25;
}

#hhsound {
  width: 35vw;
  max-width: 35vw;
  height: 60vh;
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  bottom: 8%;
  right: 23%;
}

#testfill {
  width: 99%;
  height: 99%;
  object-fit: cover;
  margin: 3;
}

#containfill {
  width: 99%;
  height: 99%;
  object-fit: contain;
  margin: 3;
}

.fullbox {
  width: 100vw;
  float:  left;
  position:  relative;
}

.floatdiv {
  float: left;
  display: block;
}

.fulldiv {
  width: 100vw;
  max-width: 100vw;
  float:  left;
  position: relative;
  z-index: 50;
}

.thirddiv {
  width: 32vw;
  max-width: 32vw;
  /*background: green;*/
  float: left;
  position: relative;

}

.thirdhidiv {
  height: 33vh;
  max-height: 33vh;
}

.twothirddiv {
  width: 66vw;
  max-width: 66vw;
  float: left;
  position: relative;

}

.halfdiv {
  width: 49vw;
  max-width: 49vw;
  min-width: 45vw;
  float: left;
  position: relative;
  z-index: 50;
}

.halfdivtwo {
  width: 49vw;
  max-width: 49vw;
  float: left;
  position: relative;
  z-index: 40;
}

.wibar {
  opacity: 0.0;
  position: absolute;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  width: 100%;
  height: 100%;

}

.thirddiv:hover .wibar{
  opacity: .9;
}

.twothirddiv:hover .wibar{
  opacity: .9;
}

.halfdiv:hover .wibar {
  opacity: .9;
}

.fulldiv:hover .wibar{
  opacity: .9;
}

.fullbox:hover .wibar {
  opacity: .9;
}


.image {
  opacity: 1;
  display: block;
  object-fit: cover;
  width: 99%;
  height: auto;
  transition: .5s ease;
  backface-visibility: hidden;

}

/*thanks to sylvain durand for this nifty tutorial*/
/*https://sylvaindurand.org/overlay-image-in-pure-css/#_*/

.fullsviewer {
  visibility: hidden;
  width: 100%;
  height: 100%;
  background: darkslategrey;
  position: fixed;
  top: 0;
  left: 0;
  opacity: .7;
  z-index: 99;
  display: flex;
  align-items: center;
  text-align: center;
}

.fullsviewer img{
  max-width: 95%;
  max-height: 95%;

  margin: auto;
  display: block;

  width: auto;
  height: auto;
}

.fullsviewer:target {
  visibility: visible;
  opacity: 1;
}



/*end of code for subpages*/




/* expandable navigation code*/


.wrap-collabsible {
  margin-bottom: 1.2rem 0;
  display: block;
  float: left;
  width: 150px;
}

input[type='checkbox'] {
  opacity: 0;
}

.lbl-toggle {
  border-radius: 7px;
  transition: all 0.25s ease-out;
  font-size: 20px;
  text-decoration: underline;
  top: 8px;
  position: relative;
}

.collapsible-content {
  max-height: 0px;
  overflow: hidden;
  transition: max-height .25s ease-in-out;
}

.toggle:checked + .lbl-toggle + .collapsible-content {
  max-height: 100vh;
  position: absolute;
  bottom: 60px;
  background: white;
}

.toggle:checked + .lbl-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.collapsible-content .content-inner {
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  padding: .5rem 0rem 0rem 0rem;


}


#navlist li a {
  font-size: 15px;
}

#navlist li {
  list-style-type: none;
}


/* end expandable nav code*/


.ftcomp {
  display: inline-block;
  width: 100vw;
  height: 80px;
  position: static;
  background-color: white;
}

.footer {
  width: 100vw;
  position: fixed;
  bottom:  0px;
  left: 0;
  z-index: 98;
}

.navigation {
  background-color: white;
  height: 60px;
  opacity: .9;
}

.navigation a {
  display: block;
  text-align: left;
  padding: 5% 5%;
  font-size: 20px;
}