@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Mono&display=swap');

* {
    margin: 0px;
    font-family: 'Ubuntu Mono', monospace;
}

body {
    background: black;
}

.window {
    position: absolute;
    display: flex;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    border: 2px solid white;

    width: 570px;
    height: 304px;
}

#result-info {
    font-size: 26px;
    position: absolute;
    top: 10px;
    left: 305px;
    width: 95px;
    height: 273px;
    border: 2px solid white;
    padding: 4px;
}

.number-guess {
    color: white;
    margin-left: 3px;
}

#canvas-draw {
    position: absolute;
    margin: 10px;
    border: 2px solid white;
    cursor: crosshair;
}

#result-label {
    position: absolute;
    top: 60px;
    left: 453px;
    font-size: 150px;
    color: white;
}

#clear-button {
    position: absolute;
    bottom: 10px;
    left: 433px;
    width: 120px;
    height: 40px;

    font-size: 26px;
    background: black;
    border: 2px solid white;
    color: white;
    cursor: pointer;
}

header {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: -440px;
    margin: auto;
    width: 570px;
    height: 200px;
}

footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 600px;
    margin: auto;
    width: 570px;
    height: 200px;
}

p, b {
    font-size: 20px;
    color: white;
}

a {
    color: white;
}

#brush-slider {
    width: 570px;
}


input[type=range] {
    height: 25px;
    -webkit-appearance: none;
    margin: 10px 0;
    background: black;
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 3px;
    cursor: pointer;
    box-shadow: 0px 0px 0px #FFFFFF;
    background: #FFFFFF;
    border-radius: 1px;
    border: 0px solid #FFFFFF;
}

input[type=range]::-webkit-slider-thumb {
    box-shadow: 0px 0px 0px #000000;
    border: 1px solid #FFFFFF;
    height: 18px;
    width: 18px;
    border-radius: 25px;
    background: #FFFFFF;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -8px;
}