@import url("https://fonts.googleapis.com/css2?family=Bentham&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bentham&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://unpkg.com/boxicons@latest/css/boxicons.min.css");
@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Macondo+Swash+Caps&family=Outfit:wght@100..900&family=Quintessential&display=swap');



:root {
  --calcWidth: calc(var(--vw, 1vw) * 100);
  --calcWidth: calc(var(--vh, 1vw) * 100);
}




*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
}

html {
  box-sizing: inherit;
  scroll-behavior: smooth;
  height: -webkit-fill-available;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  height: -webkit-fill-available;
  color: #fff;
  background-color: #0b1d26;

  background: linear-gradient(180deg, rgb(10, 20, 39) 0%, rgb(10, 20, 39) 50%, rgb(36, 42, 121) 70%, rgb(10, 20, 39) 90%) !important;
  text-align: center;
  padding-bottom: 50px;

}


main {
  overflow: hidden;
}

a,
button {
  cursor: pointer;
  border: none;
  outline: none;
  user-select: none;
  background: none;
  box-shadow: none;
  text-decoration: none;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.picshowing {
  max-width: 84vw;
  max-height: 70vh;
  width: fit-content;
  object-fit: contain;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
}

.header .headerpics {
  background-color: #000000;
}

.content-area-div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

}

.picshow {
  position: relative;
  top: 0;
  max-width: 80vw;
  height: auto;
  max-height: calc(var(--vh, 1vh) * 70);
  background: black;
  border-bottom-left-radius: 1.6rem;
  border-bottom-right-radius: 1.6rem;
  border: rgb(0, 0, 0) solid 2px;
  overflow: hidden;
  z-index: -4;
}

.pic-show-container {
  position: relative;
  width: fit-content;
  height: fit-content;
  max-height: calc(var(--vh, 1vh) * 70);
  margin-bottom: 1vh;
}


.nav-collection {
  position: relative;
  height: 46vh;
  width: 86vw;
  max-height: 200px;
  background-color: #1e232e;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 4;
  border: #0099ff #666 solid 2px;

}


.loader-div {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}

.loader {
  border: 3px solid #f3f3f3d5;
  border-radius: 50%;
  border-top: 3px solid #3498db;
  width: 80px;
  height: 80px;
  -webkit-animation: spin 2s linear infinite;
  /* Safari */
  animation: spin 2s linear infinite;

}

.footnote-copy {
  box-sizing: content-box;
  margin-bottom: 20px;
  color: #ffffffd5;
  font-weight: 300;
  font-size: smaller;
}