canvas {
    outline: 1px solid rgb(255, 255, 255);
    margin-bottom: 1vw;
    width: 30vw;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    
}

body {
    background-color: #2B2B2B;
    color: #D9D9D9;
    font-family: Arial, sans-serif;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


a {
    color: #9CDCFE;
}

h1 {
    /* change font size so each h1 takes up width of viewport */
    font-size: 3vw;
}
h2{
    font-size: 2vw;
}
input[type="text"] {
    font-size: 3vw;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #FFFFFF;
}

p {
    line-height: 1.5;
}

input[type="range"]{
    width: 30vw;
    margin-bottom: 1vw;
}

button,
input[type="submit"] {
    margin-top: 1vw;
    background-color: #3C3C3C;
    color: #D9D9D9;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 1.5vw;
}

button:hover,
input[type="submit"]:hover {
    background-color: #4C4C4C;
}

/* You can add more styles for other HTML elements as needed */