html {
    font-family: Arial, Helvetica, sans-serif;
    color: #dae0e0;
    overflow-y: hidden;
}
body {
    overflow-y: hidden;
}

#canvas {
    display: block;
    margin: auto;
    border: 1px solid black;
}

#control-buttons {
    /* border: 1px solid black; */
    height: 10%;
    margin-top: 5px;
    /* padding-top: 10px; */
    text-align: center;
    touch-action: manipulation;
}

button {
    border: 0;
    padding: 0;
    margin: 0px 2px;
    vertical-align: middle;
    cursor: pointer;
    background-color: gainsboro;
    user-select: none;
}
button:focus {
    outline: none;
}

.bruh {
    height: 90%;
    margin-right: 5px;
}
.increment {
    width: 35px;
}

#settings-button {
    height: 90%;
    width: 30px;
    border: none;
    background: none;
    cursor: pointer;
}

#settings {
    background-color: rgba(0,0,0, 0.4);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 0%;
    transition: 0.40s;
}
#settings-buttons {
    top: 10%;
    position: relative;
    text-align: center;
    height: 100%;
    padding-bottom: 50px;
}

#closeSettings {
    height: 48px;
    width: 48px;
    padding: 5px 5px;
    border-radius: 5px;
    background-color: rgba(255,255,255, 0.8);
    position: relative;
    top: 10%;
    float: right;
    right: 15%;
    z-index: 999;
}

.settings-row {
    text-align: center;
    margin-bottom: 20px;
}
.settings-row * {
    vertical-align: middle;
}

#timescale {
    width: 200px;
}
#time-result {
    display: inline-block;
    width: 75px;
    color: black;
    background: white;
    padding: 2px 3px;
    border-radius: 3px;
}

h2 {
    display: inline;
}

#circles, #showArrows, #showEntireTracePath {
    border-radius: 5px;
    width: 30px;
    height: 30px;
}

#startK, #endK, #K {
    font-size: 18px;
}

#startK {
    margin-right: 15px;
}

.open-settings{
    overflow-y: auto;
}
.close-settings{
    overflow-y: hidden;
}