

@font-face {
    font-family: Consola;
    src: url('../fonts/consola.ttf') format('truetype');
}
@font-face {
    font-family: Orbitron_black;
    src: url('../fonts/Orbitron-Black.ttf') format('truetype');
}

html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Consola,monospace;
    background-color: #000000;
    scrollbar-width: none; /* Firefox */
    color: #ff9933;
    text-shadow: 0 0 0.5rem #ff9933;
    max-width: 100%;
    scroll-behavior: smooth;
    font-size: 1.2vw;
    overflow-x:hidden;
    /*animation:In 3s alternate ;*/
}

hr {
    background:#ff9933;
    height:1px;
    border:0;
    animation: none;
}

p{
    animation: flicker 0.1s infinite;
}
a{
    color: #ff9933;
    text-decoration: none;
    animation: flicker 0.1s infinite;
    cursor: pointer;
}
pre {
    color: #ff9933;
    animation: flicker 0.1s infinite;
}
h1{
    animation: flicker 0.1s infinite;
}
.box_line{
    margin: 2rem;
    border: 0.1rem solid;
}
.tiny_shine{
    filter: drop-shadow(0 0 0.1rem #bf7326);
}
.shine_mini{
    filter: drop-shadow(0 0 0.2rem #ff9933);
}
.shine{
    filter: drop-shadow(0 0 0.75rem #ff9933);
}
.shine_hard{
    filter: drop-shadow(0 0 2rem #ff9933);
}
.center{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.main_div{
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
}
.no_margin{
    margin: 0;
    padding: 0;
}
button{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15rem;
    height: 3rem;
    margin: 1rem;
    border:0.1rem solid #ff9933;
    background-color: black;
}
button > a{
    font-size: 1rem;
    color: #ff9933;
    font-family: Orbitron_black,monospace;
}
:root {
    --left-val: 0;
}
.moving_box{
    width: 100vw;

}
.moving_txt{
    animation: textMover 7s linear infinite;
}

.commit_area{
    display: none;
    width: 40rem;
    height: 1rem;
    margin-bottom: 1rem;
    border:0.1rem solid #ff9933;
    background-color: #000000;
    color: #ff9933;
    padding: 1rem;
}
.text_in_area{
    display: none;
    width: 40rem;
    height: 30rem;
    margin-bottom: 2rem;
    border:0.1rem solid #ff9933;
    background-color: #000000;
    color: #ff9933;
    padding: 1rem;
}
textarea:focus{
    outline: none;
}
textarea::placeholder{
    color: #955b20;
}
.crt-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(rgba(0,0,0,0) 70%, rgba(0, 0, 0, 0.5) 30%);
    background-size: 100% 0.2rem, 0.6rem 100%;
    pointer-events: none;
    z-index: 50;
}
.afterwallet{
    display: flex;
    flex-direction: column;
    width: 100vw;

}
.code_space{
    margin: 1rem;
    width: 70rem;
    display:block;
}

.transactions_div{
    width: 70rem;
    display:flex;
    flex-direction:column;
    border: 0.1rem solid #ff9933;
    border-radius: 1rem;
}
.transaction_entry{
    padding: 1rem 0 1rem 2.5rem;
    border-bottom: 0.1rem solid #ff9933;
    font-size: 1.2rem;
    cursor: pointer;
}
.transaction_entry:hover{
 background: rgba(243, 178, 113, 0.25);

}
.commit-line {
    border-right : 0.2rem solid #9f6122;
    height : 100%;
}
.progress {
    width:18rem;
    height:1.5rem;
    background: #000;
    overflow: hidden;
    position: relative;
    border: 0.1rem solid #ff9933;
    align-items: center;
}
.progress-bar {
    background: linear-gradient(90deg, black 20%,#ff9933 0);
    background-size: 1.1rem 100%;
    height:80%;
    width:2%;
    position:absolute;
}
.main_loading_div{
    display: none;
    position: absolute;
    width: 100vw;
    height: 100vh;
}
.mini_loading_div{
    display: none;
    position: absolute;
    width: 100vw;
    height: 100vh;
}
.block_mobile{
    display: none;
    position: absolute;
}
.loading_img{
    width: 30rem;
    animation: loading 2s linear infinite;
    margin: 0;
}
.loading_txt{
  font-size: 1.7rem;
    filter: drop-shadow(0 0 2rem #ff9933);
}
.close {width:1rem; height: 1rem; position:absolute; top:0; right:0; margin:1rem; cursor:pointer; z-index: 1}
.close:before,
.close:after {position: absolute;content:' ';height: 2rem;width: 0.14rem;background-color: #ff9933;}

.close:before {transform: rotate(45deg);}
.close:after {transform: rotate(-45deg);}
@keyframes flicker {
    0% { opacity: 0.95; }
    50% { opacity: 1; }
    100% { opacity: 0.95; }
}
@keyframes loading {
    0% {
        opacity: 0.5;
        filter: drop-shadow(0 0 0.2rem #ff9933);
    }
    50% {
        opacity: 1;
        filter: drop-shadow(0 0 2rem #ff9933);

    }
    100% {
        opacity: 0.5;
        filter: drop-shadow(0 0 0.2rem #ff9933);
    }
}
@keyframes textMover {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100rem);
    }
}
@keyframes textLittleMover {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-70rem);
    }
}
@media (max-width: 600px) {
    html, body {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: Consola,monospace;
        background-color: #000000;
        scrollbar-width: none; /* Firefox */
        color: #ff9933;
        text-shadow: 0 0 0.5rem #ff9933;
        max-width: 100%;
        scroll-behavior: smooth;
        font-size: 2vw;
        overflow-x:hidden;
        /*animation:In 3s alternate ;*/
    }
    .main_div{
        display: flex;
        flex-direction: column;
        width: 100vw;
        height: 100dvh;
    }
    .main_loading_div{
        display: none;
        position: absolute;
        width: 100vw;
        height: 100dvh;
    }
    .mini_loading_div{
        display: none;
        position: absolute;
        width: 100vw;
        height: 100dvh;
    }
    .top_title{
        animation: textLittleMover 4s linear infinite;
    }
    .block_mobile{
        display: flex;
        position: absolute;
        width: 100vw;
        height: 100dvh;
    }
    .block_mobile>img{
        width: 30rem;
    }
    .check_title{
        width: 30rem;
    }
    .code_in_div{
        display: none;
    }
    .onchain_commit_title{
        font-size: 0.6rem;
    }
    .code_space{
        margin: 1rem;
        width: 35rem;
        display:block;
    }
    .transactions_div{
        width: 35rem;
        display:flex;
        flex-direction:column;
        border: 0.1rem solid #ff9933;
        border-radius: 1rem;
    }
}
@media (min-width: 1500px) {
    html, body {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: Consola,monospace;
        background-color: #000000;
        scrollbar-width: none; /* Firefox */
        color: #ff9933;
        text-shadow: 0 0 0.5rem #ff9933;
        max-width: 100%;
        scroll-behavior: smooth;
        font-size: 0.7vw;
        overflow-x:hidden;
        /*animation:In 3s alternate ;*/
        .top_title{
            animation: textMover 10s linear infinite;
        }
    }
}