@import url('https://fonts.googleapis.com/css2?family=Jost&display=swap');

body {
    background: #181a1b;
    color: rgb(218, 216, 216);
    font-family: Jost;
    font-size: 1.2em;
}
h1 {
    text-align: center;
}
#scans-view {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
}
canvas {
    border:1px solid black;
    background-color: rgb(92, 92, 92);
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}
button {
    padding-top: 3px;
    padding-bottom: 3px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 20px;
    cursor: pointer;
    background: green;
    color: rgb(230, 230, 230);
    font-size: 1.2em;
    border: none;
    transition: 0.15s;
}
button:hover{
    background: rgb(27, 168, 27);
}
input[type=radio] {
    cursor: pointer;
}
.flex {
    /* display: flex; */
    width: max-content;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
}
.limit {
    width: 100%;
    overflow-x: scroll;
}
label {
    user-select: none;
    cursor: pointer;
    font-size: 1.1em;
}
p {
    text-align: center;
    font-size: 1.2em;
}