body {
    color: #ffffff;
    overflow-x: hidden;
    overflow-y: hidden;
    scroll-behavior: smooth;
    background-color: #093c2a;


    /* Start black for the hero canvas */
}




/* Crazy Glitch & Shatter Effects */

#beat-a {

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 4vh;

    margin-bottom: 10vh;
}

@keyframes glitch-skew {

    0%,
    100% {
        transform: skew(0deg);
    }

    20% {
        transform: skew(-5deg);
    }

    21% {
        transform: skew(5deg);
    }

    25% {
        transform: skew(0deg);
    }
}

@keyframes glitch-anim-1 {
    0% {
        clip-path: inset(80% 0 0 0);
    }

    5% {
        clip-path: inset(10% 0 60% 0);
    }

    10% {
        clip-path: inset(40% 0 43% 0);
    }

    15% {
        clip-path: inset(10% 0 54% 0);
    }

    20% {
        clip-path: inset(25% 0 25% 0);
    }

    25% {
        clip-path: inset(80% 0 10% 0);
    }

    30% {
        clip-path: inset(10% 0 10% 0);
    }

    100% {
        clip-path: inset(10% 0 10% 0);
    }
}

@keyframes letter-shatter {
    0% {
        opacity: 0;
        transform: translate(var(--tw-translateX), var(--tw-translateY)) rotate(var(--tw-rotate)) scale(2);
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0) rotate(0) scale(1);
        filter: blur(0);
    }
}

@keyframes neon-pulse {

    0%,
    100% {
        text-shadow: 0 0 10px rgba(191, 255, 0, 0.5), 0 0 20px rgba(191, 255, 0, 0.3);
    }

    50% {
        text-shadow: 0 0 25px rgba(191, 255, 0, 0.8), 0 0 50px rgba(191, 255, 0, 0.6);
    }
}

.glitch-text {
    position: relative;
    display: inline-block;
    animation: glitch-skew 4s infinite linear alternate-reverse;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.glitch-text::before {
    left: 2px;
    text-shadow: -2px 0 #ff003c;
    clip-path: inset(45% 0 44% 0);
    animation: glitch-anim-1 5s infinite linear alternate-reverse;
}

.glitch-text::after {
    left: -2px;
    text-shadow: -2px 0 #00fff9;
    clip-path: inset(50% 0 30% 0);
    animation: glitch-anim-1 3s infinite linear alternate-reverse;
}


.shatter-letter {
    display: inline-block;
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1.2);
    --tw-translateX: 50px;
    --tw-translateY: 50px;
    --tw-rotate: 45deg;
}

#beat-a.active .shatter-letter {
    animation: letter-shatter 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}


.brand-neon {
    color: #bfff00;
    animation: neon-pulse 3s infinite ease-in-out;
}


.CON {

    width: 100vw;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;


}

.textbox {

    width: 40vw;
    height: 80vh;

    background-color: black;

    border: 1px solid black;
    border-radius: 5%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    transition: all 0.5s ease-out;




}

.textbox:hover {

    box-shadow: 0px 0px 10px 10px #03A64A;

    height: 90vh;

}

/* input part */



input[type=text] {

    background-color: #fff9f9;

    border: none;

    font-size: larger;
    font-family: sans-serif;
    font-weight: lighter;
    font-variant: normal;
    font-variant-caps: normal;

    text-align: center;
    text-decoration: none;
    text-justify: auto;


    margin-bottom: 10px;

    height: 10vh;
    width: 20vw;

    transition: width 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);

}

input[type=text]:hover {

    background-color: rgb(219, 219, 219);
    border-bottom: 1px solid black;
    width: 30VW;
}


input[type=text]:focus {

    width: 30VW;

    background-color: #c0c0c0
}

/* input part */

/* submit part */



input[type=submit] {

    background-color: #fff9f9;

    border: none;

    font-size: larger;
    font-family: sans-serif;
    font-weight: lighter;
    font-variant: normal;
    font-variant-caps: petite-caps;

    text-align: center;
    text-decoration: none;
    text-justify: auto;

    margin-bottom: 10px;

    height: 10vh;
    width: 20vw;

    transition: width 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);

}

input[type=submit]:hover {
    background-color: #39FF14;
    color: #000;
    border-bottom: 1px solid black;
    width: 30VW;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.6);
}

input[text=submit]:focus {

    width: 30VW;

    background-color: #c0c0c0;

}

/* ZERO-LAYOUT-IMPACT VALIDATION STYLES */
.form-input-invalid {
    border-bottom: 2px solid #ff3e3e !important;
    box-shadow: 0 0 20px rgba(255, 62, 62, 0.6), 0 0 40px rgba(255, 62, 62, 0.3) !important;
}

.form-input-valid {
    border-bottom: 2px solid #39FF14 !important;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.6), 0 0 40px rgba(57, 255, 20, 0.3) !important;
}

.form-shake {
    animation: form-shake-anim 0.5s cubic-bezier(.36, .07, .19, .97) both;
}

@keyframes form-shake-anim {

    10%,
    90% {
        transform: translate3d(-1px, 0, 0);
    }

    20%,
    80% {
        transform: translate3d(2px, 0, 0);
    }

    30%,
    50%,
    70% {
        transform: translate3d(-4px, 0, 0);
    }

    40%,
    60% {
        transform: translate3d(4px, 0, 0);
    }
}

/* Submit loading state */
input[type=submit].loading {
    opacity: 0.5;
    cursor: not-allowed;
    filter: grayscale(1);
}


@media (max-width: 640px) {

    #beat-a {

        font-size: 100%;

    }


    .textbox{

        height: 80vh;
        width: 80vw;

        margin-right: 15px;


    }

    .textbox:hover{
        height: 85vh;
    }




input[type=submit] {

    height: 10vh;
    width: 70vw;

}




input[type=text] {
    height: 10vh;
    width: 70vw;
}

input[type=text]:hover {
    width: 75vw;
}


}
