* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



body {
    font-family: "puffin-arcade-regular", sans-serif;
    font-size: 3vh;
    font-weight: 800;
    font-style: normal;


    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* text */
h1 {
    font-family: "puffin-arcade-nerf", sans-serif;
    font-size: 5vh;
    font-weight: 800;
    font-style: normal;
    text-align: center;
}

p {
    text-align: center;
}


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

.canvas-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    /* Adds space between canvases */

}

.canvas-container {
    display: flex;
    justify-content: center;
    align-items: center;

}

.diagram {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}