
/* * * * * *
    BASE STUFF
*/


    #section-2 h1::before,  #section-2 h1::after , #section-4 h1::before, #section-4 .todo-done::before, #section-5 h1::before, #disclaimer-text h2::after {
        position: absolute;
        width: 100%;
        z-index: -1;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        height: 50px;
        content: " ";

        overflow: visible;
    }
/* * * * * */



























/* * * * * *
    MARQUEE
*/

    
    #header-scrolltext {
        position: relative;
        padding: 10px 0px;
        width: 100%;
        display: flex;
        flex-wrap: nowrap;
        
        overflow-x: hidden;

        background-color: black;
        color: white;

        align-items: center;

        font-size: 3rem;
        font-family: Amplitude;

        
    } #header-scrolltext span {
        animation: marquee 45s linear infinite;
    }

    @keyframes marquee {
        from { transform: translateX(0); }
        to { transform: translateX(-50%); }
      }

/* * * * * */















/* * * * * *
    HERO SECTION
*/

    #hero-section {
        display: flex;
        justify-content: center;

        column-gap: 10%;
        padding: 70px 15px;
        padding-bottom: 25px;

        flex-wrap: wrap;
    }

    #hero-image {
        height: 600px;
        max-height: 70vh;
        min-height: 410px;
    }

    #hero-text {
        padding-top: 5%;
        min-width: 340px;

        font-size: 1.5rem;
        display: flex;
        flex-direction: column;
    } #hero-text h1 {
        font-size: 3.5rem;
        margin-bottom: 25px;
    } #hero-text a {
        margin-top: 25px;
        font-size: 2.5rem;
        font-family: Amplitude;

        max-width: 300px;
        
        border-radius: 15px;

        border-left: solid 5px black;
        border-bottom: solid 5px black;
        border-right: solid 2px black;
        border-top: solid 2px black;

        background-color: #ffe686;
        color: black;
        text-decoration: none;
        text-align: center;
        transition: transform 100ms;

        cursor: pointer;

        display: flex;
        justify-content: center;
        align-items: center;
    }

    @media only screen and (max-width: 760px) {
        #hero-text {
            text-align: center;
            align-items: center;
        } #hero-text a {
            padding-left: 25px;
            padding-right: 25px;
        }
    }
    

    #hero-ca {
        width: 100%;
        text-align: center;

        font-size: 1.5rem;
        word-wrap: break-word;

        padding: 0px 15px;
        padding-bottom: 70px;
        box-sizing: border-box;
    }

/* * * * * */





















/* * * * * *
    CONTENT SECTIONS
*/

.content-section {
    width: 100%;
    max-width: 100%;
    overflow: hidden;

    padding: 50px 0px;
}

/* * * * * */








/* * * * * *
    SECTION TWO
     - John isnt special
*/

    #section-2 {
        background-color: #cdf6f4;
        display: flex;
        flex-direction: column;
        align-items: center;

        text-align: center;
    } 
    #section-2 h1 {
        margin-bottom: 10px;
        margin-top: 0px;
        position: relative;
        z-index: 4;
        overflow: visible;
    }  #section-2 h1::before {
        width: 120%;
        left: -30px;
        top: -10px;
        height: 70px;
        background-image: url(/ASSETS/DECORATION/yellow_line_long.png);
    } #section-2 h1::after {
        background-image: url(/ASSETS/DECORATION/yellow_line_short.png);
        left: 0px;
        bottom: 3px;
    }
    
    #section-2 #isnt-row{
        display: flex;
    }

    #isnt-row .isnt-image {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 1.5rem;
        text-align: center;
        font-weight: bolder;

        transform: translateY(-80px);
    } .isnt-image span {
        max-width: 235px;
        text-wrap: wrap;
    }

    #isnt-row-middle {
        transform: translateY(0px) !important;
    }

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

        #isnt-row {
            flex-wrap: wrap;
        }

        #isnt-row .isnt-image {
            transform: translateY(0px) !important;
        }

        #isnt-row-first, #isnt-row-second {
            width: 50%;
        }

        #isnt-row-last {
            width: 100%;
        }
    } @media only screen and (max-width: 540px) { 
        #isnt-row-first, #isnt-row-middle, #isnt-row-second {
            width: 100%;
        }
    }

/* * * * * */







/* * * * * *
    SECTION 3 (BREAKER)
      [ JOHN IS JUST JOHN ]
*/

    #section-3 {
        background-color: white;
        width: 100%;
        overflow: hidden;
        display: grid;
        place-items: center;

        position: relative;

        background-image: url(/ASSETS/DECORATION/john_heads_background.jpg);
        background-size: auto;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;

    }

    @media only screen and (min-width: 2000px) {
        #section-3 {
            background-size: cover;
        }
    }

    #just-john {
        width: 90%;
        max-width: 600px;
        overflow: hidden;

        display: grid;
        place-items: center;

        padding: 30px 20px;

        box-sizing: border-box;
        background-color: white;
        text-align: center;


        border: solid 4px black;
        border-radius: 30px;

        margin: 100px 0px;
    } #just-john h1 {
        width: fit-content;
        margin: 0px;
        font-size: 6rem;
    } #just-john span {
        font-weight: bolder;
        font-size: 1.5rem;
    }

    @media only screen and (max-width: 640px) {
        #just-john h1 {
            font-size: 10vw;
        }

        #just-john span {
            font-size: 3vw;
        }
    }

/* * * * * */











/* * * * * *
    SECTION 4 
      TO DO LIST
*/

    #section-4 {
        background-color: #cdf6f4;
        display: flex;
        flex-direction: column;
        align-items: center;
        overflow-x: hidden;
    } #section-4 span {
        font-weight: bolder;
        font-size: 2rem;
    } #section-4 h1 {
        margin: 0px;

        position: relative;
        z-index: 4;
        overflow: visible;
    }

    #section-4 h1::before {
        width: 120%;
        left: -30px;
        top: -10px;
        height: 70px;
        background-image: url(/ASSETS/DECORATION/yellow_line_long.png);
    }

    #section-4 #two-johns {

        width: 95%;
        max-width: 850px;
        display: flex;
        justify-content: space-between;
        align-items: center;

        box-sizing: border-box;
    }

    #section-4 .todolist {
        
        flex-direction: column;
        align-items: center;
        text-align: center;
    } #section-4 .todolist .todo-done {
        position: relative;
        z-index: 1;
        width: fit-content;
    } #section-4 .todolist .todo-done::before {
        z-index: 2;
        width: 130%;

        position: absolute;
        height: 40px;
        top: 0px;
        left: -20px;
        background-image: url(/ASSETS/DECORATION/red_line_1.png);
    }

    #section-4 .todolist i {
        font-weight: lighter;
    }

    #two-johns img {
        max-height: 400px;
        max-width: 50%;
        aspect-ratio: 1/1.7588602586;
    }

    #progress_bar {
        width: 80%;
        max-width: 750px;
    }

    #upper-todolist {
        display: none;
        margin-top: 25px;
    } #lower-todolist {
        display: flex;
    }


    @media only screen and (max-width: 660px) {
        #lower-todolist {
            display: none;
        }

        #upper-todolist {
            display: flex;
        }
    }


/* * * * * */











/* * * * * *
    SECTION 6
      VIDEO SECTION
*/

#section-6 {
    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 50px 0px;
}

#section-6 img {
    max-width: 100%;
}
#video-container {

    width: fit-content;
    max-width: 90%;
    box-sizing: border-box;
    height: fit-content;


    border-radius: 15px;

    border-left: solid 5px black;
    border-bottom: solid 5px black;
    border-right: solid 2px black;
    border-top: solid 2px black;

    color: black;   

    position: relative;
    overflow: hidden;

    padding: 15px;
}

#video-container #twitter-bar {
    display: flex;

    gap: 10px;
    padding-bottom: 15px;
}
#twitter-bar div {
    display: flex;
    flex-direction: column;
} #twitter-bar a {
    text-decoration: none;
    font-family: BerlinSans;
} #twitter-bar #pfp {
    height: 45px;
    border-radius: 3px;
} #twitter-bar #checkmark {
    width: 17px;
} #twitter-bar span {
    display: flex;
    align-items: center;

} #video-container #video-wrapper {
    max-width: 500px;
    width: 100%;
    max-height: 500px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
} #video-wrapper video {

    /*background-image: url("/ASSETS/section-6/videoframe_0.jpg");*/
    background-size: cover;
    background-position: center;
    margin: 0px;
    padding: 0px;
    max-width: 100%;
}

/* * * * * */











/* * * * * *
    SECTION 5
      TOKENOMICS
*/


    #section-5 {
        display: flex;
        flex-direction: column;
        align-items: center;

        background-color: #cdf6f4;
    }

    #section-5 h1 {
        position: relative;
        margin: 0px;
        z-index: 2;
    }
    #section-5 h1::before {
        width: 130%;
        left: -45px;
        top: 0px;
        height: 56px;
        background-image: url(/ASSETS/DECORATION/yellow_line_short.png);
    }

    #chart-mobile {
        display: none;
        width: 100%;
    }

    #chart-desktop {
        display: block;
        width: 95%;
        max-width: 700px;
    }


    #section-5 span {
        text-align: center;
        margin-top: 30px;
        max-width: 600px;
        width: 90%;
        position: relative;
        font-size: 26px;
    } #section-5 span a {
        color: black;
    }

    @media only screen and (max-width: 680px) {
        #chart-mobile {
            display: block;
        } #chart-desktop {
            display: none;
        }

        #section-5 span {
            margin-top: 0px;
        }
    }


/* * * * * */











