:root {
    font-family: "Andale Mono";
    --background: black;
    --color: white;
    --border-color: burlywood;
    --border-width: 2px;
    --hover-border-color: red;
    --border-accent: blue;
}

* {
    background: var(--background);
    color: var(--color);
    border: var(--border-width) solid var(--border-color);
}

body {
    min-width: 100vw;
    min-height: 100vh;
}

#initial-sign-in {
    display: flex;
    width: 800px;
    margin: auto;
    gap: 10px;
    flex-direction: column;
}

#initial-sign-in input {
    border: 2px dotted red;
}

button:hover {
    border: var(--border-width) solid var(--hover-border-color);
    cursor: pointer;
}

.position {
    border: var(--border-width) solid var(--border-accent);
    max-width: 800px;
    margin: auto;
}

.position-details {
    display: flex;
    justify-content: space-around;
    max-height: 250px;
}

.bid {
    background: green;
}

.ask {
    background: red;
}

.bid,
.ask {
    display: flex;
    justify-content: space-between;
}

.bid > span,
.ask > span {
    background: inherit;
}

.position-right {
    background: pink;
    display: flex;
    flex-direction: column;
    overflow-y: scroll;
}

.position-right * {
    margin: 0;
    padding: 0;
    border: none;
    font-size: 0.8rem;
}

h1 > img {
    width: 3rem;
}

.alert {
    background: red;
}
