:root {
    font-family: Montserrat, serif;
    scrollbar-width: none; /* Firefox */
    font-size: 1.2dvw;
    -webkit-text-size-adjust: none; /* Ã­ÂÂ¬Ã«Â¡Â¬, Ã¬â€šÂ¬Ã­Å’Å’Ã«Â¦Â¬, Ã¬ËœÂ¤Ã­Å½ËœÃ«ÂÂ¼ Ã¬â€¹Â Ã«Â²â€žÃ¬Â â€ž */
    -ms-text-size-adjust: none; /* IE */
    -moz-text-size-adjust: none; /* Ã­Å’Å’Ã¬ÂÂ´Ã¬â€“Â´Ã­ÂÂ­Ã¬Å Â¤ */
    --mv-width: 50rem;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: Montserrat, serif;
    background-color: #000000;
    scrollbar-width: none; /* Firefox */
    color: white;
    scroll-behavior: smooth;
    font-size: 1.2dvw;
}

.z-index_top {
    z-index: 99;
}

.background_image {
    display: flex;
    position: relative;
    margin-top: 1rem;
    width: 100dvw;
}

.background_black {
    display: flex;
    position: relative;
    width: 55rem;

    background: black;
}

.background_Linear_color {
    display: none;
}

.full_div {
    display: flex;
    position: absolute;
    width: 100vw;
    min-height: 100dvh;
    padding: 2rem 3rem;
    box-sizing: border-box;
    align-items: center;
    scrollbar-width: none; /* Firefox */
}

.pc_menu {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.menu_bar {
    width: 100%;
    justify-items: center;
    align-items: center;
    justify-content: space-between;
}

.main_title {
    left: 0;
    width: 13rem;
    margin-left: -0.5rem;
    cursor: pointer;
}

.main_title:hover {
    left: 0;
    filter: brightness(125%);
}


.nav_icons {
    gap: 1rem;
    margin-right: 2rem;
    filter: grayscale(100%);
    z-index: 80;
}


.nav_icons > img {
    margin-top: 1.6rem;
    width: 1.8rem;
    gap: 15rem;
    cursor: pointer;
    z-index: 99;
    opacity: 0.2;
}

.nav_icons > img:hover {
    opacity: 0.4;
}


.menu_list {
    margin-top: 0.5rem;
    margin-left: 0.5rem;
    gap: 0.5rem;
    width: fit-content;
    cursor: pointer;
}

.menu_list > a {
    color: white;
    text-decoration: none;
    opacity: 0.25;
    font-size: 1.2rem;
    width: fit-content;
    z-index: 99;
}

.menu_list > a:hover {
    transition: opacity 0.3s ease-in-out;

    opacity: 1;
}

.nav_bar {
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0;
    margin: 0 0 1rem;
}

.mobile_bottom_nav {
    display: none;
}

.pc_bottom_nav {
    display: flex;
    width: 100%;
    flex-direction: column;
    box-sizing: border-box;

    justify-content: center;
    align-items: center;
    margin-top: 5rem;
}

.bottom_hr {
    width: 92%;
    border-top: 0.1rem solid #131313;
    margin-top: 3rem;
}

.bottom_partners {
    display: flex;
    justify-items: center;
    align-items: center;
    width: 30rem;
    overflow-x: hidden;
    gap: 2rem;
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 0) 100%);
}

.moving_partners {
    display: flex;
    width: 40rem;
    gap: 2rem;
    animation: marquee 7s linear infinite;
}

.bottom_image_logo {
    width: 3rem;
    margin-right: 0.1rem;
}

.bottom_icons {
    margin-left: 2rem;
    gap: 0.3rem;
}

.bottom_icons > img {
    height: 1.2rem;
}

.moving_partners > img {
    height: 2rem;
    opacity: 15%;
    justify-items: center;
    align-items: center;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-43rem);
    }
}

.main_h1 {
    font-family: IBMPlexMonoLight, monospace;
    font-weight: 600;
    font-size: 2.2rem;
    color: #2BD52D;
    text-align: center;
    margin-top: 15rem;
    margin-bottom: 1rem;
    text-transform: capitalize;
}

.main_h2 {
    margin: 0;
    font-family: IBMPlexMonoLight, monospace;
    font-size: 1.3rem;
    text-align: center;

}

.mobile_main_info {
    display: none;

}

#main_section {
    position: absolute;
    width: 100%;
    justify-items: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}

#menu_section {
    width: 100%;
    justify-items: center;
    align-items: center;
    z-index: 4;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.main_buttons {
    width: 20rem;
    margin-top: 2rem;
    gap: 1rem;
}

.check_buttons {
    width: 30rem;
    margin-top: 2rem;
    gap: 1rem;
}

.type_in {

    border-radius: 0.2rem;
    width: 20rem;
    height: 20rem;
    padding: 1.5rem;
    scrollbar-width: none; /* Firefox */
    font-family: IBMPlexMonoRegular, monospace;
    font-weight: 400;
    font-size: 1.4dvw;
    color: #ffffff;
    background-color: transparent;
    overflow-wrap: break-word;
    text-align: left;
    border: rgba(255, 255, 255, 0.11) solid 0.12rem;
    resize: none;
}

.type_in:focus {
    outline: none;
}

.type_in:hover {
    background-color: #1313133e;
    border: rgba(255, 255, 255, 0.177) solid 0.12rem;
}

.column_flex {
    display: flex;
    flex-direction: column;
}

.row_flex {
    display: flex;
    flex-direction: row;
}

.space_between {
    justify-content: space-between;
}

.center {
    justify-content: center;
    align-content: center;
    justify-items: center;
    align-items: center;

}


.arrow_button {
    width: 2rem;
    height: 2rem;
    border-radius: 0.2rem;
    border: rgba(37, 37, 37, 0.64) solid 0.12rem;
    background-color: rgba(0, 0, 0, 0.47);
    background-size: 0.7rem;
    background-position: center center;
    background-repeat: no-repeat;
}

.arrow_button:hover {
    background-color: #0A1508;
    border: rgba(43, 213, 45, 0.1) solid 0.12rem;
}

.arrow_button:active {
    background-color: #0A1508;
    border: #03311A solid 0.12rem;
}


.left_arrow {
    background-image: url('../img/left_arrow.svg')
}

.right_arrow {
    background-image: url('../img/right_arrow.svg');
}


.background_div {
    position: absolute;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    z-index: -2;
    left: 0;
}

/*onchain page*/


.on_chain_page_dog_pc {
    position: absolute;
    overflow: visible;
    margin-left: 50rem;
    margin-top: 5rem;
}

.on_chain_page_dog_pc > img {
    width: 27rem;
    transform: translateX(3.1rem);
}

.mv-progress-div {
    width: 37.5rem;
}

.mv-progress {
    width: 98%;
    height: 1.5rem;
    background: #000;
    overflow: hidden;
    position: relative;
}

.mv-progress-bar {
    background: linear-gradient(90deg, black 40%, #00BD39 0);
    background-size: 0.8rem 100%;
    height: 2rem;
    width: 37.5rem;
    position: absolute;
}

.progress_div {

    width: 23rem;
    display: none;
    margin-top: 1rem;
}

.progress-bar {
    background: linear-gradient(90deg, black 10%, #00BD39 0);
    background-size: 2rem 100%;
    height: 2rem;
    width: 2%;
    position: absolute;
}

.progress_div > p {
    font-size: 1.2rem;
    color: #00BD39;
}

.progress {
    width: 98%;
    height: 2rem;
    background: #000;
    overflow: hidden;
    position: relative;
    border: 0.1rem solid rgba(0, 255, 34, 0.37);
    border-radius: 0.5rem;

}

.input_number {
    font-size: 1.2rem;
    font-family: IBMPlexMonoLight, monospace;
    font-weight: 400;
    color: white;
    border: none;
    text-align: right;
    align-items: center;
    justify-items: center;
    display: block;
    margin: 0;
    background-color: transparent;
    cursor: default;
}

.input_number::-webkit-inner-spin-button,
.input_number::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.input_number:focus {
    outline: none;
}

.check_menus {
    margin-top: 2rem;
    margin-bottom: 2rem;
    display: flex;
    width: 20rem;
    justify-content: center;
    align-items: center;
    justify-items: center;
    align-content: center;
    gap: 2rem;
}

.check_menu {
    display: flex;
    justify-items: center;
    align-items: center;
    align-content: center;
    justify-content: center;
    margin: 0;
}

.check_box {

    border: 0.6rem solid #181818;
    vertical-align: middle;
    border-radius: 0.1rem;
    appearance: none;
    margin: 0;
    cursor: pointer;
}

.check_box:checked {

    transition: border 0.2s ease;
    border: 0.6rem solid #ffffff;
    border-radius: 0.1rem;
    cursor: pointer;
}

.check_box:checked + label {
    padding-left: 0.5rem;
    transition: color 0.2s ease;
    color: #ffffff;
    cursor: pointer;
}

.check_box + label {
    padding-left: 0.5rem;
    color: #727272;
    font-size: 1rem;
    cursor: pointer;
}

.check_box + label:hover {
    padding-left: 0.5rem;
    color: #a2a2a2;
    font-size: 1rem;
    cursor: pointer;
}

.check_menu > input {
    margin: 0;
}

.nav_bar_mobile {
    display: none;
}


.upload_image {
    border-radius: 0.2rem;
    display: flex;
    width: 23rem;
    height: 23rem;
    overflow: scroll;
    justify-items: center;
    align-items: center;
    background-color: #0d0d0d7a;
    border: 0.12rem solid #252525;
    scrollbar-width: none; /* Firefox */

}

.upload_image:hover {
    border: 0.12rem solid #3a3a3a;
    background-color: #0d0d0d48;

}


.gen_upload {
    width: 25rem;
    height: 25rem;
    border-radius: 0.2rem;
}

.contents_input {
    width: 100%;

    align-items: center;
    align-content: center;
    text-align: center;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}


.contents_input > label > a {
    display: block;
    font-family: Montserrat, monospace;
    color: #252525;
    font-size: 1.7rem;
    margin: 0;
    cursor: pointer;
}

.upload_img_logo {
    opacity: 0.153;
    width: 2rem;
    cursor: pointer;
}

.generate_result {
    display: none;
    width: 100%;
    height: 100%;
}

.generate_result_img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.generate_result_txt {
    letter-spacing: 0.4em;
    line-height: 98%;
    font-family: IBMPlexMonoLight, monospace;
    color: #2BD52D;
}

.font_size {
    text-align: left;
    color: #444746;
    font-size: 1.2rem;
    margin-right: 1rem;
}


.info {
    text-align: left;
    color: #444746;
    font-size: 1.2rem;
    margin: 1rem 0 0 0;
}

.after_gen {
    display: none;
    width: 23rem;
    flex-direction: column;
    gap: 1rem;
}

.after_gen_png {
    display: flex;
    width: 26rem;
    flex-direction: column;
    gap: 1rem;
}

/*check page*/


.loading {
    display: none;
    /*width: 30rem;*/
    height: 23rem;
    justify-content: center;
    align-items: center;
    justify-items: center;
    width: 100%;
}

.loading > img {
    width: 18rem;
}

.loading_mini {
    display: none;
    width: 100%;
    height: 23rem;
    justify-content: center;
    align-items: center;
    justify-items: center;
}

.loading_mini > img {
    width: 20rem;
}

.loading-screen {
    display: none;
    position: absolute;
    /*z-index: 99;*/
    width: 100dvw;
    height: 100dvh;
    justify-content: center;
    justify-items: center;
    text-align: center;

}

.loading_img {
    width: 30rem;
    animation: shine 2s linear 1s infinite alternate;

}

.code-animation {
    opacity: 0;
    animation: fadeIn 0.3s ease forwards;
}

.typing-text {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.65);
}

.typing-text::after {
    content: "|";
    animation: blink 0.8s step-end infinite;
}

@keyframes bounce {
    from {
        background: url('../img/heart.png') center;
        background-size: cover;
        width: 98%;
        transform: translate(0.2rem, 0.2rem);
    }
    to {
        background: url('../img/heart.png') center;
        background-size: cover;
        transform: none;
    }
}

@keyframes bounce_mobile {
    from {
        background: url('../img/heart.png') center;
        width: 98%;
        height: 98%;
        background-size: cover;
        transform: translate(1rem, 0.6rem);
    }
    to {
        background: url('../img/heart.png') center;
        background-size: cover;
        transform: none;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.loading-bar {
    width: 40rem;
    height: 0.3rem;
    background: #1a1a1a;
    border-radius: 0.3rem;
    overflow: hidden;
    position: relative;
}

.loading-item {
    display: flex;
    flex-direction: column;
}

.loading-bar::after {
    content: "";
    display: block;
    width: 40%;
    height: 100%;
    background: #00ff22;
    animation: loading 0.8s ease infinite;
    box-shadow: 0 0 1.4rem #00ff22;
}

@keyframes loading {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(250%);
    }
}

@keyframes shine {
    from {
        filter: drop-shadow(0 0 7rem rgba(43, 255, 80, 0.34));
    }
    to {
        filter: drop-shadow(0 0 7rem rgba(43, 255, 80, 0.11));
    }
}

/* Particles */
#particles-js {
    width: 100%;
    height: 100%;
    z-index: 1;
}

.search_div {
    display: flex;
    width: 30rem;
    height: 3rem;
    justify-items: center;
    align-items: center;
    align-content: center;
    border-radius: 0.2rem;
    border: #252525 solid 0.12rem;
    overflow: hidden;
}

.search_div:hover {
    border: #434343 solid 0.12rem;
}

.search_div:focus-within {
    border-color: #9b9b9b;
}

.search_div > input {
    font-size: 1.6rem;
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    width: 100%;
    height: 100%;
    background: transparent;
    color: white;
    border: none;
    padding-left: 0.8rem;
    outline: none;
    text-align: left !important;
    resize: none;
    white-space: nowrap;
    overflow-x: auto;
    caret-color: #66D04B;
    box-sizing: border-box;
}

.search_div > input::placeholder {
    opacity: 0.3;
    color: rgba(253, 253, 253, 0.457);
    font-size: 1.6rem;
}

.search_div > input:focus::placeholder {
    opacity: 0;
}

.search_div > input:focus {
    opacity: 1;
    outline: none;
    color: rgb(212 212 212);
}

.records {
    width: 38rem;
    margin-top: 2rem;
}

.all_records_title {
    display: none;
    margin: 1rem 0 2rem 1rem;
    text-align: left;
    font-size: 1.2rem;
    color: #434845;
}

.transactions_div {
    /*width: 34rem;*/
    width: 100%;
    border: #0A1508 solid 0.12rem;
    padding: 1rem;
    box-sizing: border-box;
    border-radius: 0.2rem;
    gap: 0.5rem;
    cursor: pointer;
}

.feeds_div {
    cursor: default;
    width: 34rem;
}

.transaction_div {
    width: 38rem;
    gap: 0.5rem;
}

.transaction {
    width: 8.6rem;
    height: 6.4rem;
    padding: 0.5rem;
    box-sizing: border-box;
    background: rgba(63, 177, 85, 0.08);
    clip-path: polygon(0.5rem 0, 100% 0, 100% 100%, 0 100%, 0 0.5rem);
    border-radius: 0.2rem;
}

.transaction:active {
    background: rgba(48, 181, 84, 0.12);
}

.transaction:hover {
    background: rgba(48, 181, 84, 0.12);
}

.sig_title {
    color: #37815C;
    font-size: 0.7rem;
    margin: 0;
}

.signature {
    font-size: 0.5rem;
    height: 3.2rem;
    margin: 0.5rem 0 0;
    color: white;
    word-break: break-all;
}

.transaction_bottom_div {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.date {
    color: #37815D;
    font-size: 0.4rem;
}

.copy {
    width: 0.8rem;
}

.page_menu {
    width: 100%;
    gap: 3rem;
    justify-content: center;
    margin-top: 1rem;
    align-items: center;
    justify-items: center;
}

.page_num {
    gap: 1rem;
    display: flex;
    margin: 0;
    color: #ffffff;
    font-size: 1.2rem;
}

/*about page*/


/*buttons*/


.green_button {
    display: flex;
    cursor: pointer;
    width: 100%;
    height: 3rem;
    justify-items: center;
    align-items: center;
    align-content: center;
    justify-content: center;
    border-radius: 0.2rem;
    background: rgba(43, 213, 45, 0.1);
    border: rgba(43, 213, 45, 0.3) solid 0.12rem;

}

.green_button > p {
    font-size: 1.5rem;
    margin: 0;
    padding-bottom: 0.26rem;
    color: #2BD52D;
}

.green_button:hover {
    background: rgba(43, 213, 45, 0.2);
    border: rgba(43, 213, 45, 0.6) solid 0.12rem;
}

.re_gen {
    margin-top: 1rem;
    background: rgba(29, 33, 29, 0.2);
    border: #161616 solid 0.12rem;

}

.img_button {
    display: flex;

    width: 100%;
    height: 3rem;
    justify-items: center;
    align-items: center;
    align-content: center;
    justify-content: center;
    border-radius: 0.2rem;
    border: rgba(43, 213, 45, 0.15) solid 0.12rem;
    cursor: pointer;


}

.img_button > div {
    gap: 0.5rem;
    justify-items: center;
    align-items: center;
    align-content: center;
}

.img_button > div > img {
    height: 1.2rem;
    margin: 0;
    padding: 0;
}

.img_button > div > p {
    font-size: 1.5rem;
    margin: 0;
    padding: 0;
    color: #989898;
}

.img_button > div > a {
    font-size: 1.5rem;
}

.img_button:hover {

    background: rgba(43, 213, 45, 0.1);
    border: rgba(43, 213, 45, 0.6) solid 0.12rem;

}

.img_button:active {
    background: rgba(255, 255, 255, 0.04);

}

.simple_button_green {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(11, 78, 37, 0.7), rgba(8, 57, 34, 0.55));
    justify-items: center;
    align-items: center;
    align-content: center;
    border-radius: 2rem;
    border: rgba(43, 213, 45, 0.1) solid 0.2rem;
    cursor: pointer;
}

.simple_button_green > p {
    font-size: 3rem;
    margin: 0;
    padding: 0;
    color: #ffffff;
}


.connected_button {
    display: flex;
    justify-content: center;
    right: 0;
    width: 14rem;
    height: 2.8rem;
    justify-items: center;
    align-items: center;
    align-content: center;
    border-radius: 0.2rem;
    background: rgba(43, 213, 45, 0.1);
    border: rgba(43, 213, 45, 0.43) solid 0.12rem;
    cursor: pointer;
}

.green {
    width: 1rem;
    height: 1rem;
    border-radius: 2rem;
    background: #00BD39;
    margin-right: 1rem;
}

.connected_button > p {
    font-size: 1.15rem;
    margin: 0;
    padding: 0;
    color: #ffffff;
}

.connect_button {
    display: flex;
    justify-content: center;
    right: 0;
    width: 12rem;
    height: 2.8rem;
    font-size: 1.15rem;
    color: #D9D9D9;
    font-family: Montserrat, serif;
    border-radius: 0.2rem;
    border-width: 0.12rem;
    border-style: solid;
    border-color: rgb(22, 22, 22);
    cursor: pointer;
}

.connect_button:hover {
    transition: background-color 0.1s ease;
    background: rgba(43, 213, 45, 0.1);
    border: rgba(43, 213, 45, 0.6) solid 0.12rem;

}

.connect_button:active {
    background: rgba(255, 255, 255, 0.04);

}

.code_in_button {
    width: 23rem;
    margin-top: 1rem;

}

.simple_button {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: rgba(35, 35, 35, 0.4);
    justify-items: center;
    align-items: center;
    align-content: center;
    border-radius: 2rem;
    border: rgba(33, 36, 33, 0.43) solid 0.1rem;
    cursor: pointer;

}

.simple_button > p {
    font-size: 3rem;
    margin: 0;
    padding: 0;
    color: #ffffff;
}

.img_download {
    font-size: 4.5rem;
    margin: 0;
    padding: 0;
    text-decoration: none;
    color: #2BD52D;
}

.img_button_green {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 3rem;
    background: rgba(43, 213, 45, 0.1);
    justify-items: center;
    align-items: center;
    align-content: center;
    border-radius: 0.2rem;
    border: rgba(43, 213, 45, 0.1) solid 0.12rem;

    cursor: pointer;
}

.img_button_green:active {
    background: rgba(255, 255, 255, 0.04);
}

.img_button_green > div {
    height: 3rem;
    gap: 0.5rem;
    justify-items: center;
    align-items: center;
    align-content: center;
}

.img_button_green > div > img {
    height: 1.2rem;
    margin: 0;
    padding: 0;
}

.img_button_green > div > p {
    font-size: 1.5rem;
    margin: 0;
    padding: 0;
    color: #2BD52D;
}


/*gen page*/
.retry {
    margin-top: 5rem;
    width: 25rem;
}

.gen_menus {
    margin-top: 1rem;
    margin-bottom: 1rem;
    gap: 1rem;
}

.manage_info {
    text-align: left;
    color: #444746;
    font-size: 1.2rem;
}

.navigator_menu {
    display: none;
}

.gen_menu {
    gap: 0.5rem;
}

.check_div {
    display: flex;
    justify-content: left;
    text-align: left;
    align-items: center;
    width: 25.5rem;
    gap: 0.5rem;
}

.check_title {
    color: #444746;
    font-size: 1.3rem;
    margin: 0;
}

.check {
    cursor: pointer;
    text-indent: -9999px;
    width: 2.8rem;
    left: 0.1rem;
    height: 1.6rem;
    border: 0.12rem #444746 solid;
    background: #000000;
    display: block;
    border-radius: 0.2rem;
    position: relative;
}

.check:after {
    content: '';
    position: absolute;
    top: 0.1rem;
    left: 0.1rem;
    width: 1.1rem;
    height: 1.2rem;
    border: 0.12rem #FFF solid;
    background: #FFF;
    border-radius: 0.2rem;
    transition: 0.2s;
}

input:checked + .check:after {
    left: 1.3rem;
}

.see_code_in {
    display: none;
    flex-direction: column;
}

.goto_all_records {
    display: none;
    clip-path: polygon(
            100% 0, 100% 100%,
            0.7rem 100%, 0 50%,
            0.7rem 0
    );
    width: 6rem;
    background: linear-gradient(#252525, #171817);
    margin: 0 0 1rem 0;
    padding: 0;
    text-align: left;
    border-radius: 0.2rem;
}

.goto_all_records > p {
    font-size: 1rem;
    color: #727272;
    padding: 0;
    margin: 0.1rem 0 0.1rem 1rem;
    cursor: pointer;

}

.goto_all_records:hover {
    filter: brightness(125%);
}

.record {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    min-height: 26rem;
    background-color: #000000;
    border-radius: 0.2rem;
    border: rgba(43, 213, 45, 0.3) solid 0.12rem;
    padding: 2rem;
    box-sizing: border-box;
    margin: 0;
}


.hidden_txt {
    display: none;
}


.coded_in_text {
    margin: 0;
    width: 100%;
    display: none;
    font-size: 1.2rem;
    text-wrap: wrap;
    word-break: break-word;
    color: #2BD52D;
}

.coded_in_ascii {
    display: none;
    line-height: 1;
    letter-spacing: 0.4em;
    text-rendering: optimizeLegibility;
    font-family: IBMPlexMonoLight, monospace;
    color: #2BD52D;
    width: 34rem;
    background: black;
}

.records_list {
    display: none;
    flex-direction: column;
}

.coded_page_bottom_menu {
    width: 100%;
    bottom: 0;
    justify-content: space-between;
    margin-top: 2rem;
    display: flex;
}

.coded_page_sig_title {
    font-size: 1rem;
    color: #333333;
    margin: 0 0.5rem 0 0;
}

.coded_page_tx_id {
    font-size: 1rem;
    color: #ffffff;
    margin: 0;
}

.coded_page_link_menu {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
}

.coded_page_link_menu > img {
    height: 1rem;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

.coded_page_link_menu > p {
    font-size: 1rem;
    color: #FFF;
    font-weight: 400;
    padding: 0;
    margin: 0;
    cursor: pointer;
}


input[type=checkbox] {
    height: 0;
    width: 0;
    margin: 0;
    visibility: hidden;
}

.about_div {
    display: flex;
    flex-direction: column;
    width: 44rem;
}

.about_title {
    font-size: 2rem;
    margin: 5rem 0 0;
    font-family: Montserrat, monospace;
    font-weight: 400;

}

.token_image {
    width: 20rem;
    margin: 7rem;
}

.about_text {
    font-family: Montserrat, serif;
    line-height: 1.4;
    font-size: 1rem;
    text-wrap: wrap;
    text-align: left;
    margin: 0 0 2rem;

}

.about_text_little_big {
    font-family: Montserrat, serif;
    font-size: 1.4rem;
    text-wrap: wrap;
    font-weight: 400;

    margin: 2rem 0;

}

.about_big {
    font-family: Montserrat, serif;

    font-size: 1.7rem;
    text-wrap: wrap;
    font-weight: 400;
    text-align: center;
    margin: 2rem;

    color: #00BD39;
}

.about_info {
    justify-content: center;
    align-items: center;
    width: 44rem;
    justify-items: center;
    display: flex;
    flex-direction: column;
}

.ca_div {
    width: 40rem;
    background: linear-gradient(rgba(9, 151, 80, 0.1), rgba(4, 173, 66, 0.1));
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    gap: 1rem;
}

.ca_div > p {

    font-size: 1rem;
}

.copy_ca {
    width: 2rem;

}

.about_img {
    width: 30rem;
}


.code_in_hub_title {
    width: 18rem;
}

.cupid_img {
    width: 15rem;
}

.message {
    text-align: center;
    font-size: 1.3rem;
    text-wrap: wrap;
    word-break: break-word;
}

.letter_menu {
    margin-top: 2rem;
    position: relative;
    display: flex;
    width: 23rem;
    justify-content: space-between;
    justify-items: center;
    align-items: center;
    margin-bottom: 1rem;
}

.letter_item {
    background-color: #000000;
    color: white;
    border: rgba(255, 255, 255, 0.11) solid 0.12rem;
    border-radius: 1rem;
    display: flex;
    position: relative;
    width: 9rem;
    height: 3rem;
    padding: 0 1rem;

}

.letter_item:focus {
    outline: none;
}

.letter_item:hover {
    background-color: #1313133e;
    border: rgba(255, 255, 255, 0.177) solid 0.12rem;
}

.letter_menu_title {
    font-size: 2rem;
    color: green;
    margin: 0;
}

.letter_info {
    justify-content: space-between;
}

.letter_menu_item {
    width: 8rem;
    height: 3rem;
    font-size: 1.3rem;
    margin: 0;
    word-break: break-all;
}

.feed_div {
    width: 34rem;
    background: #000000;
    margin-bottom: 1rem;
    padding: 1rem;
    color: white;
    border-radius: 1rem;
    border: green 0.1rem solid;
    word-wrap: break-word;
    font-family: "Kode Mono", monospace;
    box-sizing: border-box;
}

.feed_handle {
    font-family: "Kode Mono", monospace;
    padding: 1rem;
    font-size: 1rem;
    background: green;
    color: black;
}

.feed_tx {
    display: none;
}

.feed_text {
    font-family: "Kode Mono", monospace;
    white-space: break-spaces;
    font-size: 1rem;
    padding: 1rem;
    color: white;
}

.feed_reply {
    font-family: "Kode Mono", monospace;
    white-space: break-spaces;
    font-size: 1rem;
    padding: 1rem;
    background: green;
    color: black;
}

.bottom_feed_links {
    width: 100%;
    display: flex;
    font-size: 1rem;
    flex-direction: row;
    justify-content: space-between;
    font-family: "Kode Mono", monospace;
}

.feed_image {
    text-align: center;
    line-height: 1;
    letter-spacing: 0.4em;
    text-rendering: optimizeLegibility;
    font-family: IBMPlexMonoLight, monospace;
}

.q_tab {
    font-size: 1rem;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

.q_tab.active {
    border-bottom: 2px solid white;
    cursor: default;
}

.q_brain {
    padding: 1rem;
    width: 34rem;
}

.q_div_padding {
    padding: 1rem;
    box-sizing: border-box;

}

.q_menu_div {
    cursor: default;
    width: 34rem;
    display: flex;
    background: green;
    font-family: "Kode Mono", monospace;
    justify-content: space-evenly;
    padding: 1rem;
    box-sizing: border-box;
    border-radius: 0.3rem;
    border: green solid 0.12rem;
}

.q_top_menu_div {
    cursor: default;
    width: 34rem;
    display: flex;
    background: black;
    font-family: "Kode Mono", monospace;
    justify-content: space-evenly;
    padding: 1rem;
    box-sizing: border-box;
    border-radius: 0.3rem;
    border: green solid 0.12rem;
}

.q_page_btn {
    font-size: 1rem;
    cursor: pointer;
}

.diary_list_div {
    padding: 1rem;
    display: flex;
    width: 34rem;
    flex-direction: row;
    overflow: scroll;
}

.diary_div {
    padding: 2rem;
    margin-right: 1rem;
    min-width: 30rem;
    border: green solid 0.12rem;
    border-radius: 1rem;
    box-sizing: border-box;
}

.diary {
    white-space: break-spaces;
}

.diary_tx {
    display: none;
}


.root_green_div {
    border: #00BD39 solid 0.1rem;
    margin: 2rem 9.4rem
}


.mv_console_div {
    scrollbar-width: none;
    padding: 0 2rem;
    color: #00ff22;
    min-height: 41.7rem;
    overflow-y: scroll;
    box-sizing: border-box;
    border-bottom: #00BD39 solid 0.1rem;
}

.music_tx_display {
    font-family: "Pixelify Sans", monospace;
    width: 18rem;
    word-wrap: break-word;
    font-size: 0.9rem;
}

.music_div {
    scrollbar-width: none;
    display: block;
    width: var(--mv-width);
    height: 10rem;
    overflow: scroll;
    border-right: #00BD39 solid 0.1rem;
    font-family: "Pixelify Sans", monospace;
    color: #00ff22;
    padding: 0.5rem;
    box-sizing: border-box;
}

.music_links > a:link {
    color: #00ff22;
}

.music_base {
    white-space: break-spaces;
    word-wrap: break-word;
}

.mv_left_menu_div {
    box-sizing: border-box;
    width: var(--mv-width);
    border-right: 0.1rem #00BD39 solid;
    border-bottom: #00BD39 solid 0.1rem;
    display: flex;
    align-items: center;
}

.left_top_menu {
    height: 3rem;
    display: flex;
    flex-direction: row;
    width: 100%;
    border-bottom: #00BD39 solid 0.1rem;
}

.mv_top_logo_div {
    display: flex;
    align-items: center;
    border-right: 0.1rem #00BD39 solid;
}

.top_logo {
    width: 2.3rem;
    padding: 0.5rem 0.8rem 0.5rem 0.8rem;

    display: block;
}

.play_progress {
    align-items: center;
}

.play_progress_div {
    border-right: 0.1rem #00ff22 solid;
}

.play_button {
    font-family: "Pixelify Sans", monospace;
    font-size: 1em;
    text-align: center;
    width: 5rem;
    height: 1.5rem;
    background: #00ff22;
    border: none;
    margin-left: 1rem;
    cursor: pointer;
}

.mv_display {
    box-sizing: border-box;
    width: var(--mv-width);
    font-family: IBMPlexMonoLight, monospace;
    line-height: 0.8;
    letter-spacing: 0.1em;
    white-space: pre;
    font-size: 0.35rem;
    color: #00ff22;
    background-color: black;
    border-right: #00BD39 solid 0.1rem;
    border-bottom: #00BD39 solid 0.1rem;
    /* display: block; */
    margin: 0;
}

.mv_right_menu_div {
    height: 3rem;
    width: 100%;

}

.mv_right_top_div {
    height: 3rem;
    border-bottom: #00BD39 solid 0.1rem;
    width: 100%;
}

.close_mv {
    width: 3.28rem;
    margin: 0;
    cursor: pointer;
    display: flex;
}

.close_mv > p {
    font-family: "Silkscreen", monospace;
    color: #00ff22;
    font-size: 1.4rem;
    line-height: 0;
}

.mv_right_status_div {
    display: flex;
    height: 3rem;
    width: 20rem;
    font-size: 1rem;
    font-family: "Silkscreen", monospace;
    color: black;
    background-color: #06c809;
}

.mv_time {
    font-family: "Pixelify Sans", monospace;
    color: #00ff22;
    font-size: 1.2rem;
}

.green_panel {
    background-color: #06c809;
    display: flex;
}

.green_panel > p {
    font-family: "Silkscreen", monospace;
    color: black;
    font-size: 1rem;
    line-height: 1;

}

.how_to_check_div {
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
}

.how_to_check_div > p {
    font-family: "Pixelify Sans", monospace;
    color: #00BD39;
    font-size: 1.2rem;
}

.about_on_chain_div {
    gap: 1.5rem;
}

.about_on_chain_text {
    font-family: "Pixelify Sans", monospace;
    color: #00ff22;
    font-size: 1.1rem;
    text-align: center;
}

.code_in_logo {
    width: 20rem;
    margin-top: 4rem;
}

.network_img {
    width: 12rem;
    border: #00BD39 solid 0.1rem;
}

.check_ascii_title {
    display: flex;
    color: #00ff22;
    font-size: 0.5rem;
    transform: translateY(3rem);
    background: black;
}

.check_on_chain_box {
    border: #00BD39 solid 0.1rem;
    padding: 3rem;
    border-radius: 1rem;
}

.check_on_chain_box > p {
    font-family: "Silkscreen", monospace;
    color: #00ff22;
}

.explain_ix_div {
    border: #0a9100 solid 0.1rem;
    padding: 0.3rem 1.5rem;
    border-radius: 1rem;
    height: 12rem;
    overflow-y: scroll;
    scrollbar-width: none;
}

.explain_ix {
    font-family: "Silkscreen", monospace;
    color: #06c809;
    font-size: 0.9rem;
}

.about_iq_logo {
    width: 12rem;
}

.about_iq_div {
    display: flex;
    width: 100%;
    padding: 4rem;
    box-sizing: border-box;
    flex-direction: column;
}

.about_box_group {
    margin-bottom: 6rem;
}

.about_box {
    padding: 0 1rem;
    box-sizing: border-box;
}

.about_title {
    width: 13rem;
    height: 100%;
    margin: 0;
}

.about_title > p {

    color: #06c809;
    font-size: 1.2rem;
    font-family: "Pixelify Sans", monospace;
}

.about_explain {
    width: 40rem;
}

.about_explain > p {
    color: #06c809;
    font-size: 1.1rem;
    font-family: "Pixelify Sans", monospace;

}

.about_box:hover {
    background-color: #06c809;
    color: black;
}

.about_box:hover p {
    color: black;
}

.roadmap_img {
    width: 50rem;
    margin-bottom: 5rem;
}
.ca_pre{
    background: #06c809;
    color: black;
    font-family: 'Silkscreen', monospace;
    width: fit-content;
    padding: 1rem;
    margin-top: 2rem;
    text-align: center;
    font-size: 1rem;
}
@media (max-width: 600px) {
    .cupid_img {
        width: 25rem;
    }

    .message {
        text-align: center;
        font-size: 2rem;
        text-wrap: wrap;
        word-break: break-word;
    }

    .letter_menu_title {
        font-size: 3rem;
        color: green;
        margin: 0;
    }

    .letter_info {
        justify-content: space-between;
    }

    .letter_menu_item {
        width: 13rem;
        height: 10rem;
        font-size: 3rem;
        margin: 0;
        word-break: break-all;
    }

    .letter_menu {
        margin-top: 2rem;
        position: relative;
        display: flex;
        width: 98%;
        justify-content: space-between;
        justify-items: center;
        align-items: center;
        margin-bottom: 1rem;
    }

    .letter_item {
        background-color: #000000;
        color: white;
        border: rgba(255, 255, 255, 0.11) solid 0.12rem;
        border-radius: 1rem;
        display: flex;
        position: relative;
        width: 27rem;

        height: 10rem;
        padding: 0 4rem;
        box-sizing: border-box;

    }

    .letter_item:focus {
        outline: none;
    }

    .letter_item:hover {
        background-color: #1313133e;
        border: rgba(255, 255, 255, 0.177) solid 0.12rem;
    }

    /* Loading Screen */
    .loading-screen {
        display: none;
        position: absolute;
        /*z-index: 99;*/
        width: 100dvw;
        height: 100dvh;
        justify-content: center;
        justify-items: center;
        text-align: center;

    }

    .loading-item {
        display: flex;
        flex-direction: column;
    }

    .loading_img {
        width: 50rem;
        animation: shine 2s linear 1s infinite alternate;

    }

    .code-animation {
        opacity: 0;
        animation: fadeIn 0.3s ease forwards;
    }

    .typing-text {
        font-size: 3rem;
        margin-bottom: 2rem;
        color: rgba(255, 255, 255, 0.65);
    }


    .background_image {
        display: flex;
        position: relative;
        margin-top: 12rem;
        height: 100dvh;
width: auto;
    }


    .about_text_little_big {

        font-family: Montserrat, serif;
        font-size: 3rem;
        text-wrap: wrap;
        font-weight: 400;

        margin: 2rem 0;
    }

    .about_big {
        font-family: Montserrat, serif;

        font-size: 3.3rem;
        text-wrap: wrap;
        font-weight: 400;
        text-align: center;
        margin: 2rem;

        color: #00BD39;;
    }

    .about_img {
        width: 100%;
    }

    .about_div {
        display: flex;
        flex-direction: column;
        width: 99%
    }

    .about_title {
        font-size: 6rem;
        margin: 0;
        font-family: Montserrat, monospace;
        font-weight: 400;

    }

    .token_image {
        width: 34rem;
        margin: 7rem;
    }

    .progress_div {
        width: 95%;
        margin-top: 2rem;
        display: none;
    }

    .progress {
        width: 100%;
        height: 5rem;
        background: #000;
        overflow: hidden;
        position: relative;
        border: 0.1rem solid rgba(0, 255, 34, 0.37);
        border-radius: 3rem;

    }

    .progress-bar {
        background: linear-gradient(90deg, black 10%, rgba(0, 255, 34, 0.38) 0);
        background-size: 10rem 100%;
        height: 5rem;
        width: 2%;
        position: absolute;
    }

    .progress_div > p {
        font-size: 3rem;
        color: #00BD39;
    }

    .retry {
        margin-top: unset;
        width: unset;
    }

    .gen_menus {
        gap: 3rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .pc_bottom_nav {
        display: none;
    }

    .mobile_title {
        width: 35rem;
        margin-top: 14rem;
        margin-bottom: 34rem;
    }

    .nav_bar_mobile {
        display: flex;
    }


    .type_in {

        border-radius: 0.42rem;
        width: 53rem;
        height: 53rem;
        padding: 6rem;
        scrollbar-width: none; /* Firefox */
        font-family: IBMPlexMonoRegular, monospace;
        font-weight: 400;
        font-size: 4dvw;
        color: #ffffff;
        background-color: transparent;
        overflow-wrap: break-word;
        text-align: left;
        border: 0.3rem solid #252525;
        resize: none;
        cursor: text;
    }

    .type_in:focus {
        outline: none;
    }

    .type_in:hover {
        background-color: #1313133e;
        border: 0.3rem solid #252525;
    }


    .font_size {
        width: 98%;
        text-align: left;
        color: #444746;
        font-size: 3.3rem;
    }

    .pc_menu {
        display: none;
    }

    .pc_main_info {
        display: none;
    }

    .nav_icons {
        gap: 2rem;
        margin-right: 2rem;
    }

    .nav_icons:hover {
        filter: brightness(125%);
    }

    .nav_icons > img {
        width: 7rem;
    }


    .main_h1 {
        font-family: IBMPlexMonoMedium, monospace;
        font-weight: 600;
        font-size: 7rem;
        color: #2BD52D;
        text-align: center;
        text-transform: uppercase;
        margin: 0 0 5rem;
    }

    .main_h2 {
        margin: 0;
        font-family: IBMPlexMonoLight, monospace;
        font-size: 2.8rem;
        text-align: center;
    }

    .background_dog_image {
        display: flex;
        position: relative;
        margin-top: 9rem;
        width: 55rem;
    }

    .background_black {
        display: flex;
        position: relative;
        width: 55rem;
        background: black;
    }

    .background_Linear_color {
        position: relative;
        display: flex;
        bottom: 0;
        width: 100%;
        height: 40%;
        background: linear-gradient(black, #192920 90%);
    }

    .full_div {
        display: flex;

        position: absolute;
        width: 100vw;
        min-height: 100dvh;
        padding: 8rem 9rem;
        box-sizing: border-box;
        align-items: center;
        scrollbar-width: none; /* Firefox */
        justify-content: space-between;
    }

    .nav_icon {
        width: 1.5rem;
        cursor: pointer;
    }

    .navigator_menu {
        height: 95rem;
        transform: translate(-8rem, 13rem);
        background-repeat: no-repeat;
        background-size: contain;
        width: 47.7rem;
        position: absolute;
        display: none;
        flex-direction: column;
        padding: 6rem;
        box-sizing: border-box;

        background-image: url('../img/navigator.svg');
        z-index: 99;
    }

    .navigator_menu_icons {
        filter: grayscale(100%);
        margin-top: 3rem;
        margin-bottom: 3rem;
        display: flex;
        align-content: center;
    }

    .navigator_menu_icons > img {
        width: 6rem;
    }

    .navigator_menu_list {
        gap: 2rem;
    }

    .navigator_menu_list > a {
        color: #ffffff;
        text-decoration: none;

        font-size: 4rem;
        width: fit-content;
    }

    .navigator_menu_list > a:active {
        color: #01BB39;
    }

    .nav_bar {
        align-items: center;
        justify-content: space-between;
        height: 20rem;
        width: 100%;
    }

    .nav_title {
        width: 30rem;
    }

    .nav_connect {
        width: 18rem;
        height: 9rem;
    }

    .nav_menu_arrow {
        width: 4rem;
        margin-left: 2rem;
    }

    #main_section {
        position: unset;
        width: 100%;
        justify-items: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    #menu_section {
        width: 100%;
        justify-items: center;
        align-items: center;
        flex-direction: column;
    }

    .mobile_main_info {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .mobile_title {
        display: flex;
        width: 35rem;
        margin-top: 4rem;
        margin-bottom: 34rem;
    }

    .main_h1 {
        font-family: IBMPlexMono, monospace;
        font-weight: lighter;
        font-size: 7.2rem;
        color: #2BD52D;
        text-align: center;
        margin: 0 0 5rem;
    }

    .main_h2 {
        margin: 0;
        font-family: IBMPlexMonoLight, monospace;
        font-size: 2.9rem;
        text-align: center;
        background: black;
        box-shadow: 0 -4rem 3rem #000000;
    }


    .nav_icons {
        gap: 2.5rem;
        z-index: 99;
        opacity: 0.25;
        filter: none;
    }

    .menu_list > a {
        color: #91ffc5;
        text-decoration: none;
        opacity: 0.25;
        font-size: 3.2rem;
        width: fit-content;
        cursor: pointer;
        user-select: none;
    }

    .menu_list > a:hover {
        opacity: 0.25;
    }

    .mobile_bottom_nav {
        display: flex;

        margin-top: 10rem;

        width: 100%;
        box-sizing: border-box;
        justify-content: space-between;
    }

    .search_div {
        display: flex;
        width: 100%;
        height: 10rem;
        justify-items: center;
        align-items: center;
        align-content: center;
        border-radius: 0.42rem;
        border: #252525 solid 0.4rem;

    }

    .search_div > input {
        padding-left: 2rem;
        font-size: 3.6rem;
        font-family: Montserrat, serif;
        font-weight: 400;
        background: transparent;
        width: 97%;
        color: white;
        border: none;
        resize: none;
        scrollbar-width: none;

    }

    .search_div > input::placeholder {
        font-size: 3.6rem;
        color: rgba(253, 253, 253, 0.457);

    }

    .search_div > input:focus {
        opacity: 1;
        outline: none;
        color: rgb(102, 208, 75);
    }

    .search_div:hover {
        border: #404040 solid 0.4rem;
    }

    .check_buttons {
        width: 100%;
        margin-top: 2rem;
        gap: 1rem;
    }

    .input_number {
        font-size: 3rem;
        color: white;
        border: none;
        text-align: center;
        align-items: center;
        justify-items: center;
        display: block;
        margin: 0;
        background-color: transparent;
        cursor: default;
    }

    .input_number::-webkit-inner-spin-button,
    .input_number::-webkit-outer-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    .input_number:focus {
        outline: none;
    }


    .green_button {
        display: flex;
        cursor: pointer;
        width: 100%;
        height: 10rem;
        justify-items: center;
        align-items: center;
        align-content: center;
        justify-content: center;
        border-radius: 0.4rem;
        border: rgba(43, 213, 45, 0.3) solid 0.42rem;

    }

    .green_button:hover {
        display: flex;
        cursor: pointer;
        width: 100%;
        height: 10rem;
        justify-items: center;
        align-items: center;
        align-content: center;
        justify-content: center;
        border-radius: 0.4rem;
        border: rgba(43, 213, 45, 0.3) solid 0.42rem;

    }

    .green_button > p {
        font-size: 5rem;
        margin: 0;
        padding: 0;
        color: #2BD52D;
    }

    .re_gen {
        margin-top: 5rem;
        background: #161616;
        border: #161616 solid 0.42rem;
    }

    .simple_button_green {
        display: flex;
        justify-content: center;
        width: 100%;
        height: 100%;
        justify-items: center;
        align-items: center;
        align-content: center;
        border-radius: 0.42rem;
        background: rgb(10, 21, 8);
        border: rgba(43, 213, 45, 0.1) solid 0.3rem;
        cursor: pointer;
    }

    .simple_button_green:hover {
        border-radius: 0.42rem;
        border: rgba(43, 213, 45, 0.43) solid 0.3rem;
    }


    .simple_button_green > p {
        font-size: 3rem;
        margin: 0;
        padding: 0;
        color: #ffffff;
    }

    .green {
        width: 0.7rem;
        height: 0.7rem;
        border-radius: 4rem;
        background: #00BD39;
        margin-right: 1rem;
    }

    .connected_button {
        display: flex;
        justify-content: center;
        cursor: pointer;
        width: 100%;
        height: 100%;

        justify-items: center;
        align-items: center;
        align-content: center;
        border-radius: 0.42rem;
        background: rgba(43, 213, 45, 0.1);
        border: rgba(43, 213, 45, 0.43) solid 0.3rem;

    }

    .connected_button > p {
        font-size: 2.8rem;
        margin: 0;
        padding: 0;
        color: #ffffff;
    }

    .simple_button {
        display: flex;
        justify-content: center;
        cursor: pointer;
        width: 100%;
        height: 100%;
        background: rgba(35, 35, 35, 0.4);
        justify-items: center;
        align-items: center;
        align-content: center;
        border-radius: 0.42rem;
        border: rgba(33, 36, 33, 0.43) solid 0.3rem;

    }

    .simple_button:hover {
        background: rgb(10, 21, 8);
        border-radius: 0.42rem;
        border: rgba(43, 213, 45, 0.3) solid 0.3rem

    }

    .simple_button > p {
        font-size: 3rem;
        margin: 0;
        padding: 0;
        color: #ffffff;
    }

    .img_button {
        display: flex;
        justify-content: center;
        width: 100%;
        height: 10rem;
        justify-items: center;
        align-items: center;
        align-content: center;
        border-radius: 0.42rem;
        border: #161616 solid 0.3rem;

    }

    .img_button:hover {
        border-radius: 0.42rem;
        border: rgba(43, 213, 45, 0.3) solid 0.3rem;

    }

    .img_button > div {
        height: 4.5rem;
        gap: 2rem;
        justify-items: center;
        align-items: center;
        align-content: center;
    }

    .img_button > div > img {
        height: 3.7rem;
        margin: 0;
        padding: 0;
    }

    .img_button > div > p {
        font-size: 4.5rem;
        margin: 0;
        padding: 0;
        color: #989898;
    }

    .img_button > div > a {
        font-size: 4.5rem;
    }

    .img_download {
        font-size: 4.5rem;
        margin: 0;
        padding: 0;
        text-decoration: none;
        color: #2BD52D;
    }

    .img_button_green {
        display: flex;
        justify-content: center;
        width: 100%;
        height: 10rem;
        justify-items: center;
        align-items: center;
        align-content: center;
        border-radius: 0.42rem;
        border: rgba(43, 213, 45, 0.3) solid 0.3rem;

    }

    .img_button_green:hover {
        border-radius: 0.42rem;
        border: rgba(43, 213, 45, 0.3) solid 0.3rem;

    }

    .img_button_green > div {
        height: 4.2rem;
        gap: 2rem;
        justify-items: center;
        align-items: center;
        align-content: center;
    }

    .img_button_green > div > img {
        height: 3.7rem;
        margin: 0;
        padding: 0;
    }

    .img_button_green > div > p {
        font-size: 4.5rem;
        margin: 0;
        padding: 0;
        color: #2BD52D;
    }

    .check_menus {
        margin-bottom: 4rem;
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
        justify-items: center;
        align-content: center;
        gap: 4rem;
    }

    .check_menu {
        display: flex;
        justify-items: center;
        align-items: center;
        align-content: center;
        justify-content: left;
        gap: 1.5rem;
    }


    .check_box {

        border: 1.9rem solid #181818;
        vertical-align: middle;
        border-radius: 0.4rem;
        appearance: none;
        margin: 0;
        cursor: pointer;
    }

    .check_box:checked {

        transition: border 0.2s ease;
        border: 1.9rem solid #ffffff;
        border-radius: 0.4rem;
        cursor: pointer;
    }

    .check_box:checked + label {
        font-size: 3.2rem;
        padding-left: 0.5rem;
        transition: color 0.2s ease;
        color: #ffffff;
        cursor: pointer;
    }

    .check_box + label {
        font-size: 3.2rem;
        padding-left: 0.5rem;
        color: #727272;
        cursor: pointer;
    }

    .check_box + label:hover {
        font-size: 3.2rem;
        padding-left: 0.5rem;
        color: #a2a2a2;
        cursor: pointer;
    }

    .check_menu > input {
        margin: 0;
    }

    .main_buttons {
        width: 100%;
        margin-top: 6rem;
        margin-bottom: 4rem;
        gap: 4rem;
    }

    .on_chain_page_buttons {
        width: 100%;
        margin-top: 6rem;
        gap: 4rem;
    }

    .upload_image {
        border-radius: 0.42rem;
        display: flex;
        width: 65rem;
        height: 65rem;
        overflow: scroll;
        justify-items: center;
        align-items: center;
        border: 0.3rem solid #252525;
        scrollbar-width: none; /* Firefox */
        cursor: pointer;

    }

    .upload_image:hover {
        border: 0.3rem solid #4e4e4e;
    }


    .upload_img_logo {
        opacity: 0.053;
        width: 5.4rem;
        margin: 1rem;
        cursor: pointer;
    }

    .generate_result_txt {
        letter-spacing: 0.4em;
        line-height: 98%;
        font-family: IBMPlexMonoLight, monospace;
        color: #2BD52D;
    }


    .contents_input > label > a {
        display: block;
        font-family: Montserrat, monospace;
        color: #252525;
        font-size: 4.5rem;
        margin: 0;
        cursor: pointer;
    }

    .info {
        width: 98%;
        text-align: left;
        color: #444746;
        font-size: 3rem;
        margin: 3rem 0 0 1rem;
    }

    .manage_info {
        font-size: 2.6rem;
        margin: 0 1.8rem 0 0;
        width: 98%;
        text-align: left;
        color: #444746;

    }

    .records {
        width: 100%;
    }

    .records_list {
        display: none;
        flex-direction: column;
    }

    .all_records_title {
        display: flex;
        margin: 0 0 3rem 1rem;
        text-align: left;
        font-size: 3rem;
        color: #434845;
    }

    .transactions_div {
        width: 100%;
        gap: 2rem;
        border: unset;
    }

    .q_tab {
        font-size: 2rem;
        cursor: pointer;
        border-bottom: 2px solid transparent;
    }

    .feed_div {
        width: 100%;
        background: #000000;
        margin-bottom: 1rem;
        padding: 2rem;
        color: white;
        border-radius: 1rem;
        border: green 0.1rem solid;
        word-wrap: break-word;
        font-family: "Kode Mono", monospace;
        box-sizing: border-box;
    }

    .feed_handle {
        font-size: 2rem;
        font-family: "Kode Mono", monospace;
        padding: 1rem;
        background: green;
        color: black;
    }

    .feed_text {
        font-size: 2rem;
        font-family: "Kode Mono", monospace;
        white-space: break-spaces;
        padding: 1rem;
        color: white;
    }

    .feed_reply {
        font-family: "Kode Mono", monospace;
        white-space: break-spaces;
        font-size: 2rem;
        padding: 1rem;
        background: green;
        color: black;
    }

    .bottom_feed_links {
        width: 100%;
        display: flex;
        font-size: 2rem;
        flex-direction: row;
        justify-content: space-between;
        font-family: "Kode Mono", monospace;
    }

    .feeds_div {
        width: 100%;
        cursor: default;
    }

    .q_top_menu_div {
        cursor: default;
        width: 63.5rem;
        display: flex;
        background: black;
        border: green solid 0.12rem;
        font-family: "Kode Mono", monospace;
        justify-content: space-evenly;
        padding: 2rem;
        box-sizing: border-box;
        border-radius: 0.3rem;
    }

    .q_div_padding {
        padding: 2rem;
        box-sizing: border-box;
    }

    .q_menu_div {
        cursor: default;
        width: 63.5rem;
        display: flex;
        background: green;
        border: green solid 0.12rem;
        font-family: "Kode Mono", monospace;
        justify-content: space-evenly;
        padding: 2rem;
        box-sizing: border-box;
        border-radius: 0.3rem;
    }

    .diary_list_div {
        padding: 2rem;
        display: flex;
        width: 63.5rem;
        flex-direction: row;
        overflow: scroll;
    }

    .diary_div {
        padding: 2rem;
        margin-right: 1rem;
        min-width: 200rem;
        border: green solid 0.12rem;
        border-radius: 1rem;
        box-sizing: border-box;
        font-size: 2rem;
    }

    .q_brain {
        width: 63.5rem;
        padding: 2rem;
    }

    .q_page_btn {
        font-size: 2rem;
        cursor: pointer;
    }

    .transaction_div {
        width: 100%;
        gap: 2rem;
    }

    .transaction {
        width: 23rem;
        height: 13rem;
        padding: 2rem;
        background: rgba(43, 213, 45, 0.1);
        clip-path: polygon(2rem 0, 100% 0, 100% 100%, 0 100%, 0 2rem);
        border-radius: 2.7rem 2rem 2rem 2rem;
    }

    .transaction:active {
        background: rgba(43, 213, 45, 0.2);
    }

    .sig_title {

        color: #37815C;
        font-size: 1.7rem;
        margin: 0;
    }

    .signature {
        font-size: 1.7rem;
        margin: 0.5rem 0 0;
        color: white;
    }

    .transaction_bottom_div {
        margin-top: 1rem;
        display: flex;
        width: 100%;
        justify-content: space-between;
    }

    .date {
        color: #37815D;
        font-size: 1.7rem;
    }

    .copy {
        width: 2rem;
    }

    .page_menu {
        width: 100%;
        gap: 3rem;
        justify-content: center;

        align-items: center;
        justify-items: center;
    }

    .page_num {
        gap: 1rem;
        display: flex;
        margin: 0;
        color: #ffffff;
        font-size: 3rem;
    }

    .total_page {
        opacity: 0.3;
    }

    .code_in_button {
        width: unset;
        margin-top: 2rem;
        transform: none;
    }

    .arrow_button {
        width: 5rem;
        height: 5rem;
        border-radius: 0.5rem;
        border: #252525 solid 0.3rem;
        background-color: #000000;
        background-size: 2rem;
        background-position: center center;
        background-repeat: no-repeat;
    }

    .arrow_button:hover {
        border: #0A1508 solid 0.3rem;
        background-color: #0A1508;
    }


    .arrow_button:active {
        background-color: #03311A;
        border: #03311A solid 0.4rem;
    }

    .thin_arrow_button {
        display: flex;
        height: 3.5rem;
        transition: opacity 0.3s ease;
    }

    .see_code_in {
        display: none;
        flex-direction: column;
    }

    .goto_all_records {
        display: none;
        clip-path: polygon(
                100% 0, 100% 100%,
                1.4rem 100%, 0 50%,
                1.4rem 0
        );
        width: 15rem;
        background: linear-gradient(#252525, #171817);
        margin: 0 0 3rem 1rem;
        padding: 0;
        text-align: left;
        border-radius: 0.6rem;
    }

    .goto_all_records > p {
        font-size: 2.7rem;
        color: #727272;
        padding: 0;
        margin: 0.4rem 0 0.4rem 2.3rem;
    }

    .record {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 100%;
        min-height: 55rem;
        background-color: #000000;
        border-radius: 0.42rem;
        border: rgba(43, 213, 45, 0.3) solid 0.3rem;
        padding: 5rem 5rem 3rem;
        box-sizing: border-box;
        margin: 0;
    }

    .hidden_txt {
        display: none;
    }

    .coded_in_text {
        margin: 0;
        width: unset;
        display: none;
        font-size: 2.1rem;
        text-wrap: wrap;
        color: #2BD52D;
    }

    .coded_in_ascii {
        display: none;
        letter-spacing: 0.4em;
        line-height: 1;
        font-family: IBMPlexMonoLight, monospace;
        color: #2BD52D;
        width: 55.3rem;
        background: black;
    }

    .records_list {
        display: none;
        flex-direction: column;
    }

    .coded_page_bottom_menu {
        width: 100%;
        bottom: 0;
        justify-content: space-between;
        margin-top: 3rem;
        display: flex;
    }

    .coded_page_sig_title {
        font-size: 2rem;
        color: #333333;
        margin: 0 1rem 0 0;
    }

    .coded_page_tx_id {
        font-size: 2rem;
        color: #ffffff;
        margin: 0;
    }

    .coded_page_link_menu {
        display: flex;
        gap: 1rem;
        justify-content: center;
        align-items: center;
        padding: 0;
        margin: 0;
    }

    .coded_page_link_menu > img {
        height: 2rem;
        padding: 0;
        margin: -0.5rem;
        cursor: pointer;
    }

    .coded_page_link_menu > p {
        font-size: 2rem;
        color: #FFF;
        font-weight: 400;
        padding: 0;
        margin: 0;
    }

    .coded_page_link_menu:hover {
        filter: brightness(135%);
    }

    .check_div {
        display: flex;
        justify-content: left;
        text-align: left;
        align-items: center;
        width: 100%;
        gap: 1rem;
        margin: 4rem 0 0;
    }

    .check_title {
        color: #444746;
        font-size: 2.8rem;

        margin: 0 0 0 1.5rem;
        transform: translateY(-0.14rem);
    }

    .check {
        cursor: pointer;
        text-indent: -9999px;
        width: 6.5rem;
        height: 4.5rem;
        left: 0.4rem;
        border: #252525 solid 0.3rem;
        background: #000000;
        display: block;
        border-radius: 0.42rem;
        position: relative;
    }

    .check:after {
        content: '';
        position: absolute;
        top: 0.4rem;
        left: 0.4rem;
        width: 2.3rem;
        height: 3.1rem;
        border: 0.3rem #ffffff solid;
        background: #ffffff;
        border-radius: 0.4rem;
        transition: 0.2s;
    }

    input:checked + .check:after {
        left: 3.2rem;
    }

    .after_gen {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 3rem;
    }

    .after_gen_png {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 3rem;
    }

    .about_info {
        justify-content: center;
        align-items: center;
        width: 100%;
        justify-items: center;
        display: flex;
        flex-direction: column;
    }

    .ca_div {
        width: 100%;
        background: linear-gradient(rgba(9, 151, 80, 0.1), rgba(4, 173, 66, 0.1));
        padding-left: 2rem;
        padding-right: 2rem;
        box-sizing: border-box;
        gap: 1rem;
    }

    .ca_div > p {
        font-size: 1.9rem;

    }

    .copy_ca {
        width: 5rem;

    }

    .about_text {
        font-family: Montserrat, serif;
        transform: translateX(2rem);
        line-height: 1.4;
        font-size: 3rem;
        text-wrap: auto;
        text-align: left;
        margin: 0;
        width: 97%;
    }

    .loading {
        display: none;
        width: 100%;
        height: 60rem;
        justify-content: center;
        align-items: center;
        justify-items: center;
    }

    .loading > img {
        width: 40rem;
    }

    .loading_mini {
        display: none;
        width: 100%;
        height: 50rem;
        justify-content: center;
        align-items: center;
        justify-items: center;
    }

    .loading_mini > img {
        width: 30rem;
    }

    .code_in_hub_title {
        width: 50rem;
    }


}