@font-face {
    font-family: FUTURA;
    src: url(assets/Futura_Bold.ttf);
}

body, html {
    font-family: FUTURA;
    margin: 0px;
    padding: 0px;
    border: 0px;
    overflow-y: hidden;
    overflow-x: hidden;
    cursor: default;
    width: 100vw;
    min-width: 100vw;
}

.header {
    font-family: FUTURA;
    margin: 0px;
    padding: 0px;
    border: 0px;
    background-color: rgba(255, 255, 255, 0.5);
    position: fixed;
    height: calc(2em + 10px);
    top: 0px;
    left: 0px;
    width: 100vw;
    z-index: 9000;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
}

.main {
    height: 100vh;
    overflow-y: scroll;
    overflow-x: hidden;
}

.technopug {
    position: absolute;
    z-index: 10;
}

.footer {
    font-family: FUTURA;
    margin: 0px;
    padding: 0px;
    border: 0px;
    background-color: #3b3b3b;
    width: 100vw;
    z-index: 100;
    color: white;
    height: auto;
    min-height: 3rem;
    position: relative;
}

.footer-text {
    margin: 0px;
    padding: 0px;
    border: 0px;
    font-size: 1.17em;
    cursor: default;
}

.footer-wrap {
    margin: 0px;
    padding: 0px;
    border: 0px;
    padding-left: 10px;
    padding-top: 1rem;
    padding-bottom: 5px;
    z-index: 50;
}

.maintext {
    margin: 0px;
    padding: 5px;
    padding-left:7px;
    border: 0px;
    z-index: 101;
}

.header-text {
    margin: 0px;
    padding: 0px;
    border: 0px;
    z-index: 101;
    font-size: 2em;
    top: 7px;
    left: 7px;
    height: min-content;
    margin-left: 5px;
}

a {
    margin: 0px;
    padding: 0px;
    border: 0px;
    color: white;
    text-decoration: none;
}

.bg {
    margin: 0px;
    padding: 0px;
    border: 0px;
    position: fixed;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: white;
}

.sky {
    background-image: url(assets/bg.png);
    z-index: -100;
}
.cloud1 {
    background-image: url(assets/clouds_l1.png);
    z-index: -90;
    animation: clouds1 6s 0s 2;     /* values: duration, start time, something else */
    animation-iteration-count: infinite;
}

.cloud2 {
    background-image: url(assets/clouds_l2.png);
    z-index: -80;
    animation: clouds2 6s 0s 2;     /* values: duration, start time, something else */
    animation-iteration-count: infinite;
}

@keyframes clouds1 {
    0% { transform: translateY(0px); }
    50% { transform: translateY(50px); }
    100% { transform: translateY(0px); }
}

@keyframes clouds2 {
    0% { transform: translateY(50px); }
    50% { transform: translateY(0px); }
    100% { transform: translateY(50px); }
}

.fg-benson {
    margin: 0px;
    padding: 0px;
    border: 0px;
    position: fixed;
    top: calc(50vh - (15rem / 2));
    left: calc(50vw - (15rem / 2));
    width: 15rem;
    z-index: -60;
    
}

::-webkit-scrollbar {
    width: 10px;
    position: absolute;
}
::-webkit-scrollbar-corner {
  background: transparent;
}
::-webkit-scrollbar-thumb {
    background: #f1f1f1; /* #f1f1f1 */
    border-radius: 5px;
    z-index: 3000;
}
::-webkit-scrollbar-track {
    /* background: #789feb; */
    display: none;
}

/*haha i stole this code from the dogecoin website*/

.disable {
    /* nft websites can't figure this out when it took me a quick google search */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.big-bensontext {
    color: white;
    font-size: 3em;
    z-index: 200;
    cursor: default;
}
.normal-bensontext {
    color: white;
    font-size: 2em;
    z-index: 200;
    cursor: default;
}

.below-benson {
    margin-top: calc(50vh - (15rem / 2) + 15rem);
    /*top: 10px;*/
    z-index: 400;
}

.photos-div {
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
    width: calc(100vw - 30px);
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.blocky {
    width: 540px;
    display: inline-block;
    padding: 25px;
    margin: 0px;
    background-color:rgba(255, 255, 255, 0.2);
    border: 0px;
    text-align: center;
    text-shadow: 2px 2px 8px #3b3b3b20;
    cursor: default;
    z-index: -10;
    border-radius: 10px;
    height: min-content;
    width: fit-content;
    max-width: 30em;
    font-size: 1rem;
}

.blocky-title {
    margin-top: 5px;
    color: white;
    font-size: 2em;
}

.blocky-text {
    margin-top: 5px;
    color: white;
    font-size: 1.5em;
}

.imagetm {
    width: 30em;
    /*padding-left: 20px;*/
    padding-bottom: 15px;
}

.sel-lang {
    margin-top: 5px;
    color: black;
    font-size: 1.25em;
    margin: 0;
    padding: 0;
    user-select: none;
    cursor: pointer
}

.lang-flag {
    width: 1.25em;
}

.slide {
    list-style-type: none;
    margin: 0;
    padding: 0;
    transition: .4s ease;
    clear:both;
    height: 0px;
    overflow: hidden;
}

#touch {position: absolute; opacity: 0; height: 0px;}    

.stop-it-css-before-i-kill-you {
    margin: 0px;
}

.lang-select {
    right: 20px;
    top: 5px;
    position: absolute;
    padding: 5px;
    background-color: rgba(255, 255, 255, 0.5);
}

.tt {
    position: relative;
    display: inline-block;
}
  
.tt .tth {
    visibility: hidden;
    width: fit-content;
    background-color: #00000040;
    color: #ffffff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    font-size: 1rem;
  
    /* Position the tooltip */
    position: absolute;
    transform: translate( -15px, calc(-1 * 1.2rem));
    z-index: 1;
}

.tt:hover .tth {
    visibility: visible;
}

.finn-badge {
    position: fixed;
    height: 125px;
    width: 450x;
    right: -340px;
    background-color: #ff8c00;      /* MAKE WITH AUTOMATIC BECAUSE SOME LANGUAGES DONT FIT WITHIN THE BADGE TM!!*/
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    z-index: 2000;
    bottom: 125px;
}

.finn-badge:hover {
    right: 0px;
}

.finn-img {
    padding-top: 12.5px;
    padding-left: 4px;
    width: 100px;
}

.finn {
    color: white;
    position: absolute;
}

.finn-toptext {
    top: 15px;
    font-size: 1.25em;
    margin-left: 10px;
    cursor: default;
}

.finn-midtext {
    top: calc(20px + 1.25em + 2px);
    margin-left: 10px;
    font-size: 1.05em;
    color: rgb(246, 246, 246);
    background-color: #ffb951;
    padding: 8px;
    cursor: pointer;
    transition: 0.5s;
    border-radius: 10px;
}

.finn-midtext:hover {
    background-color: #ffc774;

}

.finn-bottomtext {
    top: calc(20px + 1.25em + 10px + 1.05em + 17px);
    font-style: italic;
    margin-left: 10px;
    font-size: 1.05em;
    color: rgb(221, 220, 220);
    cursor: default;
}

.lang-disc {
    color: #fdfdfd;
    font-size: 1.5em;
}

.map-icon {
    height: 2.1em;
    float: right;
    padding-right: 20px;
    padding-top: 2.5px;
    cursor: pointer;
}

.modesel {
    height: 2.1em;
    width: 2.1em;
    float: right;
    padding-right: 10px;
    padding-top: 2.5px;
    cursor: pointer;
}

.nightsky {
    background-image: url(../assets/dark_back.png);
    z-index: -100;
}

.stars1 {
    background-image: url(../assets/dark_stars1.png);
    z-index: -90;
    opacity: 0;
    animation: star1 6s 0s 2;      /*values: duration, start time, something else */
    animation-iteration-count: infinite;
}
.stars2 {
    background-image: url(../assets/dark_stars2.png);
    z-index: -90;
    opacity: 0;
    animation: star2 6s 1s 2;     /*values: duration, start time, something else */
    animation-iteration-count: infinite;
}
.stars3 {
    background-image: url(../assets/dark_stars3.png);
    z-index: -90;
    opacity: 0;
    animation: star3 6s 4s 2;      /*values: duration, start time, something else */
    animation-iteration-count: infinite;
}
.shootingstar1 {
    background-image: url(../assets/transparent.png);
    z-index: -90;
    animation: shootstar1 10s 0s 2;     /* values: duration, start time, something else */
    animation-iteration-count: infinite;
}
.shootingstar2 {
    background-image: url(../assets/dark_shoot2_1.png);
    z-index: -90;
    animation: shootstar2 10s 6s 2;     /* values: duration, start time, something else */
    animation-iteration-count: infinite;
}

@keyframes star1 {
    0% { opacity: 0.0; }
    50% { opacity: 1.0; }
    100% { opacity: 0.0; }
}
@keyframes star2 {
    0% { opacity: 0.0; }
    50% { opacity: 1.0; }
    100% { opacity: 0.0; }
}
@keyframes star3 {
    0% { opacity: 0.0; }
    50% { opacity: 1.0; }
    100% { opacity: 0.0; }
}

@keyframes shootstar1 {
    0% { background-image: url(../assets/dark_shoot1_1.png); }
    02.5% { background-image: url(../assets/dark_shoot1_2.png); }
    05.0% { background-image: url(../assets/dark_shoot1_3.png); }
    07.5% { background-image: url(../assets/dark_shoot1_4.png); }
    10% { background-image: url(../assets/transparent.png); }
    100% { background-image: url(../assets/transparent.png); }
}

@keyframes shootstar2 {
    0% { background-image: url(../assets/dark_shoot2_1.png); }
    02.5% { background-image: url(../assets/dark_shoot2_2.png); }
    05.0% { background-image: url(../assets/dark_shoot2_3.png); }
    07.5% { background-image: url(../assets/dark_shoot2_4.png); }
    10% { background-image: url(../assets/transparent.png); }
    100% { background-image: url(../assets/transparent.png); }
}

.searchfung {
    height: 2.1em;
    width: 2.1em;
    float: right;
    padding-right: 10px;
    padding-top: 2.5px;
    cursor: pointer;
}


.search-center {
    text-align: center;
    background-color:rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    height: 100vh;
    width: 100vw;
    z-index: 5000;
    position: fixed;
    left: 0px;
    top: 0px;
}

.search-input {
    width: 15em;
    height: 1em;
    font-size: 2em;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background-color: rgba(255, 255, 255, 0.4);
    color: black;
    border-radius: 10px;
    padding: 5px;
}

.search-input:focus-visible {
    outline: 0px;
}

.container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    cursor: pointer;
    font-size: 1em;
    text-align: center;
}
  
.search-checkbox {
    font-size: 1.5em;
    cursor: pointer;
}

.search-checkbox input {
    width: 18px;
}

.checky {
    width: 0.8em;
    height: 0.8em;
    background-color: #4672ff;
    padding: 0.2em;
    padding-top: 0.1em;
    padding-bottom: 0.25em;
    border-radius: 3px;
}

.search-text {
    color: white;
    font-size: 1.5em;
    text-shadow: #3b3b3b25 0px 0px 10px;
}

.search-date {
    font-size: 1em;
}

.search-button {
    font-size: 1.5em;
    color: white;
    background-color: #4672ff;
    padding: 10px;
    border-radius: 10px;
    transition-duration: 0.5s;
    cursor: pointer;
}

.search-button:hover {
    background-color: #587fff;
}

.relbutton {
    background-color: #cb46ff;
}

.relbutton:hover {
    background-color: #cd54fd;
}
.sortsvg {
    height: 1em;
    margin-bottom: -0.12em;
    margin-left: -0.12em;
}

.sorbutton {
    background-color: #46b5ff;
}

.sorbutton:hover {
    background-color: #61c0ff;
}

.notifcenter {
    width: 30em;
    height: 100vh;
    position: fixed;
    top: calc(2em + 10px);;
    right: 10px;
    margin: 0px;
    padding: 0px;
    padding-right: 10px;
    border: 0px;
    z-index: 5000;
    overflow-y: scroll;
    pointer-events: none;
}

.notifbox {
    width: 29em;
    margin-left: 0.5em;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    height: auto;
    background-color:rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    overflow-x: scroll;
    pointer-events: all;
    cursor: default;
}

.notifbox::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

.notifimg {
    width: 4em;
    height: 4em;
    padding-top: 0.5rem;
    padding-left: 0.5rem;
}

.notiftitle {
    font-size: 2em;
}

.notifdesc {
    font-size: 1.25em;
    display: block;
    padding-right: 0.5rem;
    padding-top: 0.3rem;
    padding-bottom: 0px; 
}

.notifwrap {
    padding: 0.5rem;
}

.close-notif {
    position: absolute;
    right: 1.05em;
    /*top: 1.05em;*/
    margin-top: 0.5em;
    width: 1.25em;
    cursor: pointer;
}


@keyframes notif-leave {
    0% { opacity: 1; }
    75% { opacity: 1;}
    100% { opacity: 0; }
}

.push {
    margin-left: auto;
}