

body {
    background-color: #FFF4DF;
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

@font-face {
    font-family: 'dino';
    src: url(Dinosaur.ttf);
}
@font-face {
    font-family: 'car';
    src: url(Carton_Six.ttf);
}

nav {
    width: 100%;
    height: 150px;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 15%;

    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
}

nav img.logo {
    width: 100px;
}

nav button {
    font-size: 2rem;
    padding: 0.4rem 1.6rem 0.6rem 1.6rem;
    border: 4.5px solid black;
    background-color: #FFB400;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    font-family: 'car';

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: normal;
    color: black;
}
nav button img {
    height: 30px;
}

.root {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    width: 100%;
    min-height: 100vh;
}

.header {
    width: 100%;
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.header img {
    width: 100%;
    position: absolute;
    bottom: 0;
    min-width: 1200px;
}

.header .content {
    width: 100%;
    height: 775px;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 150px 0 0 0;

    position: relative;
}


@media only screen and (min-width: 1500px) {
    .header .content {
        height: 800px;
    }

    
}
@media only screen and (min-width: 1700px) {
    .header .content {
        height: 880px;
    }
}

.content h1 {
    font-family: 'dino', sans-serif;
    font-size: 8rem;
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    color: white;
    letter-spacing: .75rem;
}
.content h1:after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    -webkit-text-stroke: 10px black;
    z-index: -1;
    filter: drop-shadow(3px 6px 0px rgba(0, 0, 0, 1));
}



@media only screen and (max-width: 800px) {
    nav {
        padding: 0 10%;
    }
}
@media only screen and (max-width: 550px) {
    nav {
        padding: 0 5%;
    }
    .content h1 {
        font-size: 5.5rem;
    }
    .content h1:after {
        -webkit-text-stroke: 10px black;
        filter: drop-shadow(3px 6px 0px rgba(0, 0, 0, 1));
    }
    .header .content {
        height: 660px;
    }
}














.cabar {
    width: 90%;
    max-width: 800px;
    height: 70px;
    background-color: white;
    border: 4.5px solid black;
    margin-top: 2rem;

    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
}
.cabar p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 2rem;
    width: 80%;
}
.cabar button {
    width: 20%;
    height: 100%;
    background-color: black;
    border: 0;
    font-family: 'dino';
    color: white;
    font-size: 1.5rem;
}
.copy:hover {
    scale: 1;
    opacity: 0.8;
}

.socals {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}
.socals .socal {
    width: 70px;
    height: 70px;
    background-color: white;
    border: 4.5px solid black;
    margin: 0.5rem 0 0 0;

    display: flex;
    align-items: center;
    justify-content: center;
}
.socal:hover {
    scale: 0.95;
}
.socal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}







.about {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    padding: 2.5rem 0 5rem 0;
    width: 100%;
}

.about h1 {
    font-size: 6rem;
    font-family: 'dino', sans-serif;
    letter-spacing: 3px;
    opacity: 0.9;
    font-weight: normal;

    text-align: center;
    line-height: 100%;
}

.about p {
    font-size: 2.5rem;
    font-family: 'car';
    letter-spacing: 2px;
    font-weight: normal;
}

/* frames */
.frames {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4rem;
    padding: 2rem 0;
    row-gap: 2.5rem;
}

.frames .frame {
    width: 350px;
    position: relative;

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

.frame img.pic {
    position: absolute;
    height: 100px;
    bottom: 1rem;
    width: 85%;
    object-fit: cover;
    height: 70%;
    object-position: top;
}

.frame img.main {
    width: 100%;

    top: 0;
    left: 0;
    position: relative;
}

.frames .frame:nth-child(1) {
    rotate: 5deg;
}
.frames .frame:nth-child(3) {
    rotate: -5deg;
}


.frames .frame:nth-child(4) {
    rotate: 5deg;
}
.frames .frame:nth-child(6) {
    rotate: -5deg;
}


@media only screen and (max-width: 900px) {
    .about h1 {
        font-size: 4rem;
        letter-spacing: 3px;
        opacity: 0.9;
    }
    
    .about p {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .frames .frame {
        width: 50%;
    }
}

@media only screen and (max-width: 750px) {
    .frames .frame {
        width: 70%;
    }
    .frame.mov {
        display: none;
    }
    .cabar p {
        padding: 0 1rem;
        width: 70%;
    }

    .cabar button {
        padding: 0 1rem;
        width: 30%;
    }

}

@media only screen and (max-width: 500px) {
    .frames .frame {
        width: 80%;
    }
    .frame.mov {
        display: none;
    }
    .frames {
        row-gap: 1rem;
    }

    button.copy:hover {
        opacity: 1;
    }
}




/* how to buy */

.enjaying {
    width: 90%;
    max-width: 800px;
    height: 70px;
    position: absolute;
    background-color: white;
    bottom: -35px;
    z-index: 1;
    border: 4.5px solid black;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0 2rem;
}

.enjaying button {
    height: 60%;
    width: 80px;
    border: 3px solid black;

    color: white;
    font-family: 'car', sans-serif;
    font-weight: normal;
    font-size: 2rem;
}

.enjaying .ebtns button:nth-child(1) {
    background-color: rgb(50, 172, 50);
}
.enjaying .ebtns button:nth-child(2)  {
    background-color: rgb(203, 44, 44);
}

.enjaying p {
    font-size: 2.5rem !important;
    margin: 0 1rem 0 0;
}

img.wanted {
    width: 250px;
    position: absolute;
    left: -100px;
    top: -200px;
    rotate: 30deg;

    display: none;
}

.htb {
    width: 100%;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 0 6rem 0;
    /* background-color: rgb(152, 92, 48); */
    /* background-color: rgb(0, 0, 0, 0.95); */
    background-color: rgba(210, 172, 131, 0.95);
    position: relative;
    border-bottom: 6px solid black;
    border-top: 6px solid black;
    
}


.htb h1 {
    font-size: 5rem;
    font-family: 'dino', sans-serif;
    letter-spacing: 3px;
    /* opacity: 0.9; */
    color: rgb(40, 24, 8);
    color: rgb(0, 0, 0);
    font-weight: normal;


    text-align: center;
    line-height: 100%;
}

.htb p {
    font-size: 2.5rem;
    font-family: sans-serif;
    font-family: 'car';
    letter-spacing: 2px;
    color: rgb(40, 24, 8);
    color: rgb(0, 0, 0);
    font-weight: normal;
}

.htbsteps {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 4rem 10% 0 10%;
    row-gap: 2.5rem;
    row-gap: 3.5rem;
}
.htbsteps .htbstep {
    width: 330px;
    height: 250px;
    background-color: white;
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    border: 4.5px solid black;

    /* box-shadow: -5px 5px 0 black; */
    padding: 1rem 0.5rem 0 0.5rem;
    gap: 1rem;
}


.htbsteps .htbstep p {
    color: black;
    font-family: 'car', sans-serif;
    line-height: 100%;
}

.htbstep .send {
    width: 80%;
    height: 60px;
    background-color: black;
}

.send.phantom {
    background-color: #9886E5;
}
.send.jup {
    background-color: #111727;
}
.send.contract {
    background-color: #000;
}
.send.moon {
    background-color: #9886E5;
}

.htbstep .step {
    width: 50%;
    height: 60px;
    position: absolute;
    top: -30px;
    border: 4.5px solid black;

    background-color: black;

    display: flex;
    align-items: center;
    justify-content: center;
}
.step p {
    font-size: 2.2rem;
    color: white !important;
}
.send img {
    height: 100%;
}
img.lambo {
    width: 370px;
    position: absolute;
    /* bottom: -120px; */
    right: 0;
    top: -380px;

}
img.rocket2 {
    width: 370px;
    position: absolute;
    /* bottom: -120px; */
    right: 0;
    bottom: -100px;
    transform: scaleX(-1);
    animation: fly 4s infinite ease-in-out;

    display: none;
}

@media only screen and (min-width: 1350px) {
    img.rocket2 {
        display: unset;
    }
}
@media only screen and (min-width: 1500px) {
    img.lambo {
        width: 500px;
        top: -550px;
    }   
}
/* @media only screen and (min-width: 1700px) {
    .header .content {
        height: 880px;
    }
}
 */


@media only screen and (max-width: 900px) {
    .htb h1 {
        font-size: 4rem;
        letter-spacing: 3px;
        opacity: 0.9;
    }
    
    .htb p {
        font-size: 2rem;
        letter-spacing: 2px;
        padding: 0 1rem;
        text-align: center;
    }


    img.lambo {
        top: -170px;
        width: 200px;
        bottom: unset;
    }

}

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


    .enjaying {
        height: unset;
        position: absolute;
        background-color: white;
        bottom: -90px;
        z-index: 1;

    
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 1rem 0;

        flex-direction: column;
    }


    .enjaying .ebtns {
        max-height: 90px;
    }
    .enjaying button {
        height: 100%;
    }
    
}
@media only screen and (max-width: 600px) {
    .htbsteps {
        padding: 4rem 0% 0 0%;

    }

    .htbsteps .htbstep {
        width: 90%;
        height: 250px;
    }    
}














/* bannedPopup */
.bannedPopup {
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    position: fixed;
    background-color: rgba(0, 0, 0, .7);
    z-index: 2;

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

    display: none;
}
.bannedPopup .bPop {
    padding: 0 1rem;
}
.bPop p {
    color: white;
    font-weight: normal;
    font-family: 'car', sans-serif;
    font-size: 3rem;
    text-align: center;
}

.bPop p.h {
    font-family: 'dino', sans-serif;
}


@keyframes fly {
    50% {
        transform: translate(0, 40px) scaleX(-1);
    }
}

/* rocket */
.rocket {
    width: 350px;
    position: absolute;
    left: 0;
    top: 0;
    transform: scaleX(-1);

    animation: fly 2s infinite ease-in-out;
}



/* live */

.live {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 2;

}
.live img.livee {
    width: 150px;
}
.live img.livee:hover {
    scale: 0.9;
}

@keyframes throwin {
    from {
        transform: translate(0, 1000px) scale(0.5);
    } to {
        transform: translate(0, 0) scale(1);
    }
}

.speek {
    width: 400px;
    height: 500px;
    background-color: white;
    position: absolute;
    bottom: 120%;
    right:  10%;
    border: 4.5px solid black;

    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    box-shadow: -5px -5px 200px rgb(0, 0, 0, .5);
    animation: throwin 0.5s ease-in-out;
    display: none;
}

.speek .profile {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background-color: rgb(214, 214, 214);
    padding: 0 1rem;
}

.profile img {
    height: 70%;
    aspect-ratio: 1/1;
    border-radius: 100%;
}
.profile p {
    font-size: 2rem;
    font-family: 'car', sans-serif;
}




.speek .messages {
    width: 100%;
    height: 100px;
    flex-grow: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 0.5rem;

    position: relative;
    overflow-y: scroll;
}


.messages .me {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: end;

}
.me p {
    font-size: 1.4rem;
    font-family: 'car', sans-serif;
    background-color: rgb(182, 212, 249);
    font-weight: normal;
    padding: 1rem 1rem;
    border-radius: 1rem 1rem 0 1rem;
}

.messages .pletomsg {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;

}
.pletomsg p {
    font-size: 1.5rem;
    font-family: 'car', sans-serif;
    background-color: rgb(189, 189, 189);
    font-weight: normal;
    padding: 1rem 1rem;
    border-radius: 1rem 1rem 1rem 0rem;
}


.typing {
    position: absolute;
    top: -2rem;
    left: 0.5rem;
    font-size: 1.5rem;
    font-family: 'car', sans-serif;

    display: none;
}



@keyframes pop {
    50% {
        scale: 1.05;
    }
}

.cops {
    width: 100%;
    height: 100px;
    position: absolute;
    bottom: 100%;
    left: 0;

    display: flex;
    align-items: center;
    justify-content: center;
    animation: pop 0.4s ease-in-out infinite;

    display: none;
}



.cops p.calling {
    font-family: 'dino', sans-serif;
    background-color: rgb(203, 44, 44);
    color: white;
    padding: 1rem;
    font-size: 1.5rem;
}

.speek .send {
    width: 100%;
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    background-color: rgb(214, 214, 214);

    position: relative;
}
.send .blocked {
    font-size: 2rem;
    font-family: 'car', sans-serif;
    color: rgb(71, 71, 71);

    display: none;
}

.send input {
    width: 70%;
    height: 100%;
    border: 4.5px solid black;

    font-family: 'car', sans-serif;
    font-size: 1.5rem;
    padding: 0 1rem;
    border-radius: 0;
}

.send input:focus {
    outline: none !important;
}

.send button {
    width: 30%;
    height: 100%;
    font-size: 1.7rem;
    background-color: #000;
    font-family: 'car', sans-serif;
    border: 4.5px solid black;
    border-left: 0;
    color: white;
    letter-spacing: 3px;
}

.send button:hover {
    scale: 1;
    opacity: 0.8;
    user-select: none;
    cursor: pointer;
}





@media only screen and (max-width: 450px) {
    .live {
        position: fixed;
        bottom: 0rem;
        right: 0rem;
        z-index: 2;
        padding: 0 1rem 1rem 0;

        width: 100%;

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

    .live img.livee {
        width: 150px;
    }


    .speek {
        width: 100%;
        height: 500px;
        background-color: white;
        position: absolute;
        bottom: 120%;
        right:  0%;
    }
}




.footer {
    width: 100%;
    height: 200px;
    background-color: rgb(0, 0, 0, .1);

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;

}

.footer p:nth-child(1) {
    font-size: 2.5rem;
    font-family: 'car', sans-serif;
    font-weight: normal;
    text-align: center;
    padding: 0 1rem;
}
.footer p:nth-child(2) {
    font-size: 1.8rem;
    font-family: 'car', sans-serif;
    font-weight: normal;
    text-align: center;
    padding: 0 1rem;
}



/* pleto game */


.pletomakerwrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5rem 0;
    position: relative;

}

@keyframes pop {
    50% {
        scale: 1.05;
    }
}



.pletomakerwrapper button {
    font-size: 2.5rem;
    padding: 0.4rem 1.6rem 0.6rem 1.6rem;
    border: 4.5px solid black;
    background-color: #FFB400;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    font-family: 'car';

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: normal;
    margin: 1rem 0 0 0;

    animation: pop 0.4s ease-in-out infinite;

    position: relative;
    z-index: 1;
    color: black;
}
.pletomakerwrapper button img {
    height: 30px;
}

.pletomakerwrapper h1 {
    font-size: 5rem;
    font-family: 'dino', sans-serif;
    font-weight: normal;
    text-align: center;
    width: 100%;
    opacity: 0.9;

    position: relative;
    z-index: 2;
    padding: 0 1rem;
}


.pletomakerwrapper p {
    font-size: 2.5rem;
    font-family: sans-serif;
    font-family: 'car';
    letter-spacing: 2px;
    color: rgb(40, 24, 8);
    color: rgb(0, 0, 0);
    font-weight: normal;
}



button:hover {
    scale: 0.95;
}

.send.h:hover {
    scale: 0.95;
}