html {
    overflow: hidden;
}

html, body {
    margin: 0;
}

main {
    font-family: "Cascadia Code";
    display: flex;
    align-items: stretch;
    height: 100vh;
    width: 100%;
}

pre {
    font-family: "Cascadia Code";
    margin: 0;
    padding: 0;
}

@media (max-width: 1000px) {
    main {
        flex-direction: column;
    }
}

#editor {
    flex: 1;
}

.tip {
    position: absolute;
    bottom: 1em;
    left: 1em;
    z-index: 5;
    color: white;
    display: flex;
    flex-direction: column;
}

#current-action {
    color: #888888;
    margin-bottom: 1rem;
}

#output {
    flex: 1;
    background-color: rgb(13, 16, 30);
    color: white;
    padding: 10px;
    overflow: auto;
}

.achievements {
    position: absolute;
    bottom: 1em;
    right: 1em;
    color: white;
    display: flex;
    flex-direction: column;
    z-index: 5;
}

.achievements a {
    color: wheat;
}

@media (max-width: 1000px) {
    #divider {
        width: auto !important;
        height: 4px;
    }

    .tip {
        display: none;
    }
}

#divider {
    width: 4px;
    background-color: #444444;
}
