body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background:
        linear-gradient(#1d0606, #110606),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
}

.terminal_border {
    border-top: 1px solid #0b0b0b;
    border-left: 1px solid #0b0b0b;
    border-right: 1px solid #0b0b0b;
    border-bottom: 1px solid #0b0b0b;
    border-radius: 13px;
    box-shadow: 0px 0px 20px 12px #000000a1;
}

.terminal_header {
    border-radius: 13px 13px 0px 0px;
    margin: 0;
    padding: 10px;
    padding-left: 15px;
    padding-right: 15px;
    background-color: #0b0b0b;
    color: #ffffff;
    font-family: monospace;
    /* border-radius: 10px 10px 0px 0px; */
    display: flex;  
    justify-content: space-between;
}

.terminal_inner {
    background-color: #000000cf;
    color: #ffffff;
    padding: 20px;
    font-family: monospace;
    width: 600px;
    min-height: 400px;
    border-radius: 0px 0px 13px 13px; /* slightly smaller than outer */
    transition: all 0.3s ease;
}

.mobile_banner {
    position: absolute;
    z-index: 999;
    background: 
        linear-gradient(#640909, #550808),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.mobile_banner_inner {
    font-family: monospace;
    font-size: 24px;
    color: white;
    background-color: #ff000036;
    padding: 15px;
    min-width: 300px;
    text-align: center;
    border-radius: 10px;
    border: 1px solid #ff000054;
    transition: all 0.3s ease;
}

.mobile_banner_inner p {
    margin: 0;
}

@media (min-width: 801px) {
    .mobile_banner {
        display: none;
    }
}

@media (max-width: 800px) {
    .terminal_border {
        display: none;
    }
    .mobile_banner {
        display: flex;
    }
}

@media (max-width: 400px) {
    .mobile_banner_inner {
        min-width: 100px;
    }
}

.terminal_text p {
    margin: 0;
    font-size: 18px;
}

.prefix {
    color: white;
    font-weight: bold;
}

.prefix-red {
    color: red;
}

.controls {
    display: flex;
    justify-content: space-between;
    width: 25px;
    /* margin: 0; */
    /* font-weight: bold; */
    font-family: monospace;
}

.controls p {
    margin: 0;
    padding: 0;
    cursor: pointer;
}

a {
    color: white;
}

a:hover {
    font-weight: bold;
}

.terminal_input_wrapper {
    display: flex;
    font-size: 18px;
    flex-direction: column;
}

.terminal_input {
    padding: 0;
    margin: 0;
    background: none;
    color: white;
    font-family: monospace;
    font-size: 18px;
    border: none;
    border-bottom: 1px solid white;
    flex: 1;
    outline: none;
}