*,
*::before,
*::after {
    box-sizing: border-box;
    line-height: 1.75rem;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    width: 100%;
    min-height: 95vh;
    font-family: Geneva, Verdana, sans-serif;
    font-weight: bold;
    background-color: hsla(200, 100%, 10%, 1);
    --header-load-time: 400ms;
    --content-load-time: 400ms;
    color: white;
}

:root {
    --hue: 250;
    --saturation: 50%;
    --foreground-lightness: 95%;
    --background-lightness: 30%;
    --anchor-saturation: 80%;
    --foreground-color: hsl(var(--hue),
            var(--saturation),
            var(--foreground-lightness));
    --background-color: hsl(var(--hue),
            var(--saturation),
            var(--background-lightness));
    --anchor-color: hsl(var(--hue),
            var(--anchor-saturation),
            var(--foreground-lightness));
}

.buttons{
    position: fixed;
    width:100%;
    margin: 1rem auto;
    display:flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index:10;
}

button {
    box-shadow: none;
    border-radius: 5px;
    font-family: inherit;
    font-weight: bold;
    border:none;
    font-size: 3rem;
    padding:1rem;

}

#canvas {
    position: absolute;
    top: 0vh;
    bottom:0;
    left:0;
    right:0;
    width:100%;
    height:100%;
}
.classifier{
    position: absolute;
    top:10rem;
    width:100%;
    font-size: 1.5rem;
    text-align: center;
    color: lightgreen;
    
}