* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
body {
    background-color: rgb(75, 75, 75);
}
main {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#myCanvas {
    background-color: rgb(203, 202, 198);
    border: 0px solid rgb(0, 0, 0);
}