/* Set-up */
html {
    font-family:'Courier New', Courier, monospace;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

 html::-webkit-scrollbar {
    display: none;
}
  
#body-enter-page {
	background: #3B3534;
    position:fixed;
    margin: 0 auto;
    padding:0;
    width:100%;
    height:100%;
    overflow:scroll;
	background-image: url(bg-fallback.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position:center 100%;
}

#body-photo-page {
    background: white;
    position:absolute;
    margin: 0 auto;
    padding:0;
    height:100%;
    overflow-x:auto;
}

.sliding-background {
    background: url("bg.jpg");
    background-size: 100% auto;
    height: 54000px;
    width: 100%;
    animation: slide 600s linear infinite;
    position: absolute;
    z-index: -1;
    padding: 0;
    margin:0;
  }
  
@keyframes slide {
    0% {
      transform: translate3d(0, 0, 0);
    }
    100% {
      transform: translate3d(0, -54000px, 0);
    }
  }

/* Container box to set the sides relative to */

.centering {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    -webkit-perspective: 1000px; 
    perspective:1000;
    perspective-origin: 60%;
}

.sign {
	width: 300px;
	height: 350px;
    margin: auto;
	transform-origin: left;

	-webkit-transition: -webkit-transform .3s;
	transition: transform .3s; /* Animate the transform properties */

	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d; /* <-NB */
}

/* The two faces of the cube */
.sign-front {
    background-size: contain;
    background-position: center 100%;
    -webkit-background-position: center 100%;
	background-image: url(front.png);
	height: 350px;
    width: 300px;
    position:absolute;

    
    box-shadow: 0px 0px 50px white;
}

.sign-side {
    background-size: contain;
    background-position: center 100%;
    -webkit-background-position: center 100%;
	background-image: url(side.png);
	height: 350px;
	width: 35px;
    position:absolute;

    box-shadow: 0px 0px 50px white;
	
	transform-origin: top left;
    -webkit-transform-origin: top left;
	transform:  translateX(300px) rotateY(90deg);
    -webkit-transform:  translateX(300px) rotateY(90deg);
}

.sign-back {
    height: 350px;
	width: 35px;
    position:absolute;

    box-shadow: 0px 0px 50px white;
		
	transform-origin: top left;
    -webkit-transform-origin: top left;
	transform:  rotateY(90deg);
    -webkit-transform: rotateY(90deg);
}


/* Rotate the cube */
.centering:hover > .sign {
	-webkit-transform: rotateY(-60deg);
	transform: rotateY(-60deg); /* Text bleed at 90º */
}

.centering:active > .sign {
	-webkit-transform: rotateY(-60deg);
	transform: rotateY(-60deg); /* Text bleed at 90º */
}

.copyright-div {
    font-size:2vh;
    position:fixed;
    width:100%;
    bottom: 0;
    justify-content:center;
}

.copyright-text {
    text-align: center;
    color:white;
    background-color:#1F1B19;
    margin:0;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
    white-space: nowrap;
}

.darktext{
    text-align: center;
    font-size: 150%;
    color:#bfbfbf;;
    background-color:#1F1B19;
    margin:0;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

.lighttext{
    text-align: center;
    font-size: 150%;
    color:#1F1B19;
    margin:0;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}
.menubar-div {
    font-size: 3.5vh;
    height:4vh;
    position:fixed;
    background-color:#3B3534;
    width:100%;
    bottom: 2vh;
    justify-content:stretch;
    display:flex;
    flex-direction: column;
    flex-wrap:wrap;
}

.menubar-button {
    color:#ffffff;;
    text-align: center;
}

.menubar-button:hover {
    background-color:#bfbfbf;
    /* color:#C42021; */
    cursor:pointer;
}

.menubar-button-selected {
    background-color:white !important;
    color: #3B3534 !important;
    cursor:default !important;
}

.menubar-a {
    text-decoration:none;
}

.gallery {
    border-style: none;
    height:70vh;
    display:flex;
    transform: translateY(12vh);
    padding-left: 79px;
    padding-right: 79px;
}

#ps-gallery > a {
    width: 130px;
    height: 70vh;
    margin:7px;

    display: flex;
    justify-content: center;
    align-items: center;
}

img {
    height: 70vh;
    object-fit: cover;
    overflow:hidden;
}

.pswp__bg {
    background: black !important;
}

