@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@300..700&family=Quicksand:wght@300..700&family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');

* {
    box-sizing: border-box;
    font-family: "Space Mono", "Quicksand", "Fira Code", monospace;

    ::selection {
        background: #ffffff;
        color: #000000;
        font-weight: bold;
    }
}

body {
    padding: 10px;
    background-color: #000000;
    font-size: 17px;
}

#root {
    border: 1px solid #772400;
    min-height: calc(100dvh - 20px);
    padding: 10px;
    background-image: linear-gradient(10deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.94)), url("../../20251010_230536_251308565.jpg");
    backdrop-filter: blur(100px);
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
}

#reader, .command {
    display: flex;
    gap: 10px;

    label, span {
        color: #aa0c05;
        font-weight: 600;
        letter-spacing: 1px;
    }

    input {
        flex: 1;
        background-color: transparent;
        border: 0;

        color: #ffffff;

        &:focus {
            outline: none;
        }

        &::placeholder {
            color: #ffffff;
        }
    }
}

.result {
    white-space: pre;
    color: white;
    padding-block: 5px;
    padding-left: 10px;
    font-size: 16px;
}