@import url('https://fonts.googleapis.com/css2?family=Electrolize&family=Stalinist+One&display=swap');
:root {
    --pinkasscolor: #f200ff;
}

html {
    font-family: sans-serif;
    scroll-behavior: smooth;
    font-size: 1.5em;
    background-color: #000;
    color: #fff;
    font-family: "Electrolize", sans-serif;
    text-align: center;
}

body {
    margin: 0;
}

fieldset {
    margin: 20px 0 40px 0;
}

fieldset button {
    font-size: 1em;
    display: block;
    margin: 0px auto 30px;
}

textarea {
    width: 80%;
    height: 200px;
    margin: 0px auto 30px;
    font-size: 1.3em;
}

input {
    font-size: 1.2em;
    margin: 20px;
}

textarea:focus, 
input:focus {
    outline: 1px solid var(--pinkasscolor);
}

select {
    font-size: 1em;
    margin: 30px;
}

a {
    color: var(--pinkasscolor);
}

.wrapper {

}

.header {
    height: 100vh;
    text-align: center;
    background-image: url(../img/header.jpg);
    background-size: cover;
    background-attachment: fixed;
    box-shadow: 0px 0px 20px #000;
    font-family: "Stalinist One", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.header span {
    color: var(--pinkasscolor);
}

.header h1 {
    margin-top: 0;
    padding-top: 30px;
    transition: .2s;
}

.header h1:hover {
    text-shadow: 0px 0px 10px var(--pinkasscolor);
}

.header-wallet-box {
    width: 400px;
    height: auto;
    border: 1px solid var(--pinkasscolor);
    position: fixed;
    top: 110px;
    right: 70px;
    padding: 10px;
    background-color: #000000b2;
    z-index: 100000;
    overflow-wrap: break-word;
    font-family: "Electrolize", sans-serif;
    backdrop-filter: blur(3px);
}

.header-wallet-box p {
    font-size: 14px;
}

.header #connect-wallet, .header #disconnect-wallet {
    border: 1px solid var(--pinkasscolor);
    background-color: #000;
    color: #fff;
    font-size: 1.2em;
    z-index: 1001;
    cursor: pointer;
    transition: .3s all ease;
    transform: translate(0px, 5px);
}

.header #connect-wallet:hover, .header #disconnect-wallet:hover {
    transform: scale(1.1) translate(0px, 5px);
    color: var(--pinkasscolor);
}

.header h2 {
    font-size: 20px
}

.header a {
    text-decoration: none;
    color: var(--pinkasscolor);
}

[src="img/Klogo.png"]{
    width: 300px;
    height: auto;
    animation-name: spin;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-duration: 5s;
    transition: .3s transform ease-in-out;
    cursor: pointer;
}

[src="img/Klogo.png"]:hover {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
}


[src="img/karen.jpg"]{
    height: 40vh;
    width: auto;
    border-radius: 5px;
    box-shadow: 5px 5px 5px #000;
}

@keyframes spin {
    0% {transform: rotate(0deg);}
    100% {transform: rotate(359deg);}
}

.nav {
    height: 80px;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: radial-gradient(ellipse at top, #000000, transparent),
                radial-gradient(ellipse at bottom, #6b0059, transparent);
    box-shadow: 0px 3px 10px #1a0a1b;
    backdrop-filter: blur(3px);
}   

.nav ol {
    margin: 0 0 0 20px;
    padding: 0;
}

.nav ol li {
    display: inline-block;
    margin: 25px 20px 0 0;
}

.nav ol li a {
    text-decoration: none;
    font-size: 1.3em;
    color: var(--pinkasscolor);
    transition: .3s all ease;
}

.nav ol li a:hover {
    color: rgb(255, 255, 255);
}

.mobile-menu img {
    width: 70px;
    height: 70px;
}

.mobile-menu li {
    margin: 0px !important;
}

.mobile-menu-div li {
    margin: 30px;
}

.mobile-menu-div {
    padding-top: 100px;
    width: 0px;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    overflow: hidden;
    background-color: #000;
    list-style-type: none;
    z-index: 10000000;
}

.mobile-menu-div a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5em;
}

.main {

}

section {
    min-height: 85vh;
    background-color: #121212;
    margin: 50px;
    border-radius: 5px;
    padding: 20px;
}

.section-top-bar {
    height: 80px;
    position: relative;
}

.search-wrap {
    width: 600px;
    position: absolute;
    right: 0;
}

.section-top-bar svg, .section-top-bar input  {
 
}

.section-top-bar svg {
    /* align-self: flex-end; */
    height: 60px;
    margin-top: 6px;
    position: absolute;
    left: 100px;
}

.section-top-bar svg path {
    fill: var(--pinkasscolor)
}


.section-top-bar input {
    font-size: 1em;
    height: 30px;
    padding: 1px;
    float: right;
}

.section-top-bar input:focus {
    outline: 1px solid var(--pinkasscolor);
}

.roadmap-section {
   margin-top: 50px;
}

.city-suggestions {
    color: #000;
}

.how-it-works-flex {
    display: flex;
    gap: 20px;
}

.how-it-works-flex p,
.how-it-works-flex li{
    font-size: 0.9em;
}

.how-it-works-flex li {
    list-style-image: url(https://krazykaren.fun/img/crazy-lady-list-item.png);
}

.how-it-works-flex div {
    flex: 1;
    border: 1px solid white;
    transition: .3s all ease;
    padding: 10px;
}

.how-it-works-flex div:hover {
    transform: scale(1.03);
    border: 1px solid var(--pinkasscolor);
}


span {
    color: var(--pinkasscolor);
}

.main section:nth-child(1) img {
    width: 25%;
}

.main-wrap {

}

br {
    margin-bottom: 40px;
}

.middle-section {
    display: flex;
}

.left, .right {
    padding-top: 15%;
}

.middle-section div {
    align-items: center;
}

.middle-section h1 {
    
}

.left img, .right img {
    width: 100%;
    animation-name: float;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
    cursor: crosshair;
}

.middle a img {
    width: 300px;
    height: 300px;
    cursor: pointer;
}

[src="img/Telegram-icon-on-transparent-background-PNG.png"] {
    transform: scale(1.18);
}

.roadmap-flex {
    height: 400px;
    border: 1px solid #fff;
    padding: 10px;
    display: grid;
    grid-template-columns: 500px auto;
    overflow-x: auto;
    overflow-y: hidden;
    grid-auto-flow: column;
    grid-template-columns: repeat(auto-fill, 400px);
    grid-auto-columns: 400px;
    gap: 20px; 
}

.roadmap-flex div {
    flex-basis: 500px;
    border: 1px solid var(--pinkasscolor);
    padding: 10px;
}

.copy {
    display: flex;
    width: 94%;
    margin: auto;
}

.copy:nth-child(1) {
    flex: 1;
}

.partners {
    flex: 2;
    display: flex;
    justify-content: flex-end;
    align-items:center;
}

.partners img {
    width: 150px;
}

/* Popup stuff */
.popup {
    display: none;
    position: fixed; /* Stay in place */
    z-index: 100000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100vh; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0 0 0 / 80%); /* Black w/ opacity */
    color: #fff;
    box-shadow: 10px 10px 10px red;
}

.popup-content {
    background-color: #000000;
    margin: 30vh auto; /* 15% from the top and centered */
    padding: 10px;
    border: 1px solid var(--pinkasscolor);
    width: 50%; /* Could be more or less, depending on screen size */
    position: relative;
    overflow-wrap: break-word;
}

.close-btn {
    color: #fff;
    float: right;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
    color: rgb(255, 255, 255);
    text-decoration: none;
    cursor: pointer;
}


@keyframes float {
    0% {transform: translate(0px, 100px);}
    50% {transform: translate(0px, 0px);}
    100% {transform: translate(0px, 100px);}
}

@media screen and (min-width:940px) {

    .mobile-menu {
        display: none;
    }
}

@media screen and (max-width:940px) {

    html {
        width: 100% !important;
        overflow-x: hidden;
    }

    .header {
        height: auto;
    }

    .header-wallet-box {
        position: static;
        transform: translate(0px, -3px);
        margin: auto;
        background-color: #00000031;
        transition: .3s all ease-in-out;
    }

    .nav {
        position: static;
    }
    
    .main-menu {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    section {
        height: auto;
        margin: 10px;
        padding: 2px;
        overflow-x: hidden;
    }

    .how-it-works-flex div:hover {
        transform: scale(1);
        border: 1px solid var(--pinkasscolor);
    }

    fieldset {
        width: 95%;
        margin: auto;
        padding: 0px;
    }

    .photo-fieldset {
        padding: 0px;
        min-inline-size: 0;
        min-width: 0;
        box-sizing: border-box;
    }

    input {
        font-size: 1em;
    }

    select {
        font-size: .6em;
        margin: 30px 0 30px 0;
    }
    
    .how-it-works-flex {
        flex-direction: column;
    }

    .partners {
        flex-direction: column;
    }

    .copy {
        flex-direction: column;
        margin: auto;
    }

}

@media screen and (max-width:1320px) {

    .nav ol li a{
        font-size: 1em;
    }
    
}

@media screen and (max-width: 100px) {

}