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

section.one {
    background-image:
        linear-gradient(transparent 50%,
            hsl(231, 53%, 75%, .5) 50%),
        linear-gradient(90deg,
            hsl(226, 39%, 32%) 50%,
            hsl(226, 39%, 10%) 50%);
    background-size: 4rem, 4rem;
}

bodyNotUsed {
    /* Using a dark red for a classic look */
    background-color: #c80000;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, .5) 50%, transparent 0),
        linear-gradient(rgba(255, 255, 255, .5) 50%, transparent 0);
    /* Adjust the size (e.g., 30px) to change the size of the checks */
    background-size: 30px 30px;
}


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

    background-color: #c8000086;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, .5) 50%, transparent 0),
        linear-gradient(rgba(255, 255, 255, .5) 50%, transparent 0);
    /* Adjust the size (e.g., 30px) to change the size of the checks */
    background-size: 3rem 3rem;



    /*  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;    */
    /* background: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 15%,  rgb(88, 5, 5) 25%, rgb(0, 0, 0) 28%, rgb(11, 43, 19) 60%, rgb(7, 59, 31) 80%, rgb(0, 0, 0) 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(42, 88, 57) solid 2px; */

    background:
        /* Inner background (solid color, matches page/element background) */
        linear-gradient(white white) padding-box,
        /* Outer background (the gradient for the border) */
        linear-gradient(to bottom, rgb(5, 58, 24), rgb(31, 97, 56)) border-box;

    border: 4px solid transparent;
    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 {

    position: absolute;
    bottom: clamp(18px, 3vw, 40px);
    box-sizing: content-box;

    color: #ffffffd5;
    font-weight: 300;
    font-size: smaller;
}