@font-face {
	font-family: 'THE SKINNY'; src: url('TheSkinny.woff') format('woff');
}
html,body {
	min-height: fit-content;
	height: 100%;
}
body {
	display: flex;
    flex-direction: column;
    min-width: 384px;
    background-color: #343a40;
    background-image: url('burnt-oak-wood.jpg');
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    align-items: center;
    justify-content: center;
	padding:5vh 5vw;
}
body>nav .bg-dark {
	background-color: rgba(0,0,0,.3)!important;
}
main {
	background-color: rgba(0, 0, 0, .2);
	display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: 0 0 5rem rgba(0, 0, 0, .2);
    filter: drop-shadow(.25rem .5rem 5rem rgba(0, 0, 0, 1));
    border-radius: 25%;
}
main > * {
    position: relative;
    z-index: 1;
	font-family: 'Alegreya Sans', sans-serif;
}
h1 { font-family: 'THE SKINNY', fantasy; font-size: clamp(2.75rem, 10vw, 3.5rem)!important; }
h2,h3 { font-family: 'Cormorant Garamond'; }
table.nowrap th, table[nowrap] th,
table.nowrap td, table[nowrap] td,
nowrap,[nowrap],.nowrap { white-space:nowrap; flex-wrap:nowrap; }
.flex-wrap-center { display:flex; justify-content: center; flex-wrap:wrap }
img.logo { filter: drop-shadow(.25rem .5rem 1.5rem rgba(0, 0, 0, 1)); position: relative; z-index: 0; /* height:256px;*/ height: clamp(128px, 30vh, 256px);}
.text-shadow { text-shadow: .25rem .5rem .5rem rgba(0, 0, 0, 1); }
.text-shadow-0 { text-shadow: none; }
.text-sm { font-size:.8rem; }
.mh-25 { max-height:25vh; }
.mh-50 { max-height:50vh; }
.mw-25 { max-width:25vh; }
.mw-50 { max-width:50vh; }
@media (min-width: 992px) {
	.mw-lg-50 { max-width:50vh; }
	.mw-lg-75 { max-width:75vh; }
}
@media (min-width: 768px) {
	.mw-md-50 { max-width:50vh; }
	.mw-md-75 { max-width:75vh; }
}
.quote-marks {
    display: flex;
    align-items: center;
    justify-content: space-around;
    column-gap: .5em;
    max-width: 600px;
	padding: 0 2.5vw;
}
.quote-marks::before, .quote-marks::after {
    content: "\00BB";
    position: relative;
    font-size: 2.5em;
    top: -10%;
    line-height: 1em;
}
.quote-marks::before {
    content: "\00AB";
}

section {
  column-width: min(40vw, 200px);
  column-gap: 10px;
}

section img {
    --border-opacity: .2;
    width: 100%;
    cursor: pointer;
    margin: 5px;
    border: 3px solid rgba(255, 255, 255, var(--border-opacity));
    padding: 1px;
    border-radius: 10px;
	transition: border .1s ease-out;
}
section img:hover {
    --border-opacity: 1;
}

.lightbox {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  display: none;
  background: #7f8c8d;
  perspective: 1000;
}

.filter {
  position: absolute;
  width: 100%;
  height: 100%;
  filter: blur(20px);
  opacity: 0.5;
  background-position: center;
  background-size: cover;
  transition: 0.2s ease-out;
}

.lightbox img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateY(0deg);
  max-height: 95vh;
  max-width: calc(95vw - 100px);
  transition: 0.8s cubic-bezier(0.7, 0, 0.4, 1);
  transform-style: preserve-3d;
    border: 5px solid rgba(0, 0, 0, .2);
    border-radius: 10px;
    padding: 1px;
  transition: 0.2s ease-out;
}


/*.lightbox:hover img{
  transform: translate(-50%, -50%) rotateY(180deg);
}*/

[class^="arrow"] {
  height: 200px;
  width: 50px;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

[class^="arrow"]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 15px;
  height: 15px;
}

.arrowr {
  right: 0;
}

.arrowr:after {
  border-right: 1px solid white;
  border-bottom: 1px solid white;
}

.arrowl {
  left: 0;
}

.arrowl:after {
  border-left: 1px solid white;
  border-top: 1px solid white;
}

.close {
  position: absolute;
  right: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(0, 0, 0, 0.4);
  margin: 20px;
  cursor: pointer;
}

.close:after,
.close:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 90%;
  background: #fff;
}

.close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.title {
  font-size: 20px;
  color: #000;
  z-index: 1000;
  position: absolute;
  top: 0;
  left: 0;
}