html, body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    width: 100dvw;
    height: 100dvh;
    font-family: monospace;
    font-weight: bold;
}

* {
    box-sizing: border-box;
}

#button-container {
    display: flex;
    align-items: center;
    flex: 1;
}

#start-button {
    font-family: monospace;
    font-weight: bold;
    padding: 8px;
    font-size: 18px;
}

#landing {
    padding: 20px;
    background: black;
    color: white; 
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    text-align: center;
}

#landing .texto1 {
    flex: 1;
    display: flex;
    align-items: flex-end;
    padding: 0;
    margin: 0;
    text-wrap: balance;
}

#landing .texto2 {
    flex: 1;
    display: flex;
    align-items: flex-start;
    padding: 0;
    margin: 0;
    text-wrap: balance;
}

h2, em {
    width: 100%;
}

#rnbo-root {
    position: absolute;
    display: none;
    background-color: transparent;
    color: #007eff;
    width: 100%;
    /*display: flex;*/
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: monospace;
    font-weight: bold;
    text-shadow: 0px 0px 1px black
}

#rnbo-inports {
    display: none;
}

#rnbo-console {
    display: none;
}

#rnbo-clickable-keyboard {
    display: flex;
    flex-wrap: wrap;
}

#rnbo-clickable-keyboard > div {
    margin: 2px;
    border: solid black 1px;
    min-height: 50px;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

#rnbo-clickable-keyboard > div.clicked {
    background: #222222;
    color: #dddddd;
}

#rnbo-parameter-sliders {
    display: flex;
    flex-direction: column;
}

#rnbo-parameter-sliders > div {
    display: flex;
}

#rnbo-parameter-sliders > div > input:first-of-type {
    flex-grow: 1;
}

#extraCanvas {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none; /* Allow clicks to pass through to p5 canvas */
}