html{
    font-family: 'Courier New', Courier, monospace;
}

body{
    background: #0B0C10;
}

.W{
    color: #C5C6C7;
    box-shadow: 0px 0px 10px #FFFFFF1A;
    padding: 2px;
    border: 1px solid #3A506B;
    border-radius: 2px;
    margin: 2px;
    background: #1B263B;
}

.k{
    position: relative;
    background: #1B263B; 
    opacity: 1;
    margin-bottom: 5px;
    font-size: 12px;
    animation: in 0.7s;
}

@keyframes in{
    from{
        opacity: 0;
        background: #283A5C;
        transform: translateY(10px);
    } to {
        opacity: 1;
        background: #1B263B;
        transform: translateY(0px);
    }
}

.k::after{
    content: " ";
    position: absolute;
    bottom: -3px;
    left: 0px;
    background: #C5EBFF24;
    height: 1px;
    width: 100%;
}

#USERINP{
    height: 30px;
    font-family: 'Courier New', Courier, monospace;
}

#main{
    display: flex;
    flex-direction: column; 
}

.in{
    opacity: 0;
}

#log{
    overflow: scroll;
    scroll-behavior: smooth;
}