@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;
  padding-bottom: 20px;

  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;
} 


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;
}


.content-area-div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border: red solid 0px;

}


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

.picshowing {
  max-width: 84vw;
  max-height: 70vh;
  width:fit-content;
  object-fit: contain; /* Scales the image to fit without cropping, preserving aspect ratio */
  /* object-fit: cover; would fill the container, potentially cropping */
}


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


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


.picshow {
    position: relative;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    justify-self: center;
    max-width: 80vw;
    height: auto;
    /* max-height: 70vh; */
    max-height: calc(var(--vh, 1vh) * 70);
    background: black;
    border-bottom-left-radius: 1.6rem;
    border-bottom-right-radius: 1.6rem;
    border: rgb(88, 88, 88) solid 2px;
    overflow: hidden;

}





.nav-collection {
    position: relative;
    /* bottom: 2vh; */
    /* left: 50%;
    transform: translateX(-50%); */
    /* margin-top: 20vh; */
    height: 46vh;
    width: 86vw;
    max-height: 200px;
    margin-top: 2vh;
    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 {
  display: block;
  box-sizing: content-box;
  margin-bottom: 20px;
  color: #ffffffbd;
  font-weight: 200;
  font-size: smaller;
}

