* {
    box-sizing: border-box;
}
@font-face {
    font-family: Press Start;
    src: url(assets/PressStart2P-Regular.ttf);
}
body {
    cursor: none;
    margin: 0;
    overflow: hidden;
}

.dev {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    font-family: "Courier New", Courier, monospace;
}

.dev-preferences {
    display: flex;
    flex-direction: column;
}

.dev-preference {
    color: #fff;
    background-color: #0009;
    padding: 2px;
    margin: 2px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 400px;
    border-left: solid #0009 10px;
    padding-left: 2px;
}

.dev-preference span {
    margin-right: 5px;
}

.dev-preference input {
    width: 200px;
    height: 25px;
    font-family: inherit;
}

.dev-preference input[type="checkbox"] {
    width: 25px;
    margin-right: 175px;
    flex-shrink: 0;
}

.changed{
    border-left-color: #ff0;
    background-color: #2209;
}

.drag{
    background-color: #55ff5555;
}