@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300&display=swap');

* {
	-webkit-tap-highlight-color: transparent;
	scrollbar-width: none;
}

*::-webkit-scrollbar {
  display: none;
}

img {
	object-fit: cover;
	-webkit-touch-callout: none;
	border-radius: 10px;
	cursor: pointer;
	margin: 5px;
	user-select: none;
	-webkit-user-select: none;
	-webkit-user-drag: none;
}

img:hover {
	opacity: 0.9;
}

.boxxygif {
	padding-top: 100px;
}

html {
	background: black;
	color: white;
	touch-action: manipulation;
    font-family: 'Quicksand', sans-serif;
}

a, a:hover, a:active {
    color: white;
    font-size: 22px;
}

a:visited {
    color: darksalmon;
    font-size: 22px;
}

video {
	object-fit: contain;
	margin: 5px;
	border-radius: 10px;
}

#downloadAllButton, #downloadAllVideosButton, #MarqueeNotice {
	margin-bottom: 20px;
}

#goToVideos, #goToPhotos {
	margin-bottom: 20px;
}

#newNotice {
    display: flex;
    pointer-events: none;
    align-items: center;
    width: 25%;
}

.p-index {
	display: none;
}
.p-img {
	margin-right: 5px !important;
	max-width: 20px;
}

.center {
  height: 20vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: black;
}
.wave {
  width: 5px;
  height: 50px;
  background: linear-gradient(45deg, cyan, #fff);
  margin: 10px;
  animation: wave 1s linear infinite;
  border-radius: 20px;
}
.wave:nth-child(2) {
  animation-delay: 0.1s;
}
.wave:nth-child(3) {
  animation-delay: 0.2s;
}
.wave:nth-child(4) {
  animation-delay: 0.3s;
}
.wave:nth-child(5) {
  animation-delay: 0.4s;
}
.wave:nth-child(6) {
  animation-delay: 0.5s;
}
.wave:nth-child(7) {
  animation-delay: 0.6s;
}
.wave:nth-child(8) {
  animation-delay: 0.7s;
}
.wave:nth-child(9) {
  animation-delay: 0.8s;
}
.wave:nth-child(10) {
  animation-delay: 0.9s;
}

@keyframes wave {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}

#modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 40px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
  object-fit: contain;
}

#modalImg {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 80%;
  max-height: 90%;
  object-fit: contain;
  opacity: 1 !important;
  border-radius: 20px;
}

#modalPrevImg, #modalNextImg {
	display: none;
}

@media only screen and (max-width: 700px){
  .modal-content {
    width: 100%;
  }
}

#prevButtonContainer {
    position: fixed;
    background: transparent;
    border: 0;
    left: 7%;
    top: 40%;
    transform: rotate(-90deg);
    width: 200px;
    height: 200px;
    cursor: pointer;
}

#nextButtonContainer {
    position: fixed;
    background: transparent;
    border: 0;
    left: 83%;
    top: 37%;
    transform: rotate(90deg);
    width: 200px;
    height: 200px;
    cursor: pointer;
}

.arrowLeft {
    width: 200px;
    height: 200px;
    color: pink;
}

.arrowRight {
    width: 200px;
    height: 200px;
    color: pink;
}

#albumTitle, #photoHeader, #videoHeader, #loadingtext, #dN, [center] {
    text-align: center;
    align-items: center;
}