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

main{
    width: 100vw;
    height: 100vh;
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgb(33, 32, 35);
    color: #f9f9f9;
    font-family: 'Audiowide', sans-serif;
}

.font2{
    font-family: "Press Start 2P", system-ui;
}

.top{
    display: flex;
    align-items: center;
    width: 700px;
    font-size: small;
}

.canvas{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 700px;
    height: 500px;
}

canvas{
    position: absolute;
    width: 700px;
    height: 500px;
    /* background: #111; */
    border: 10px solid #333;
    cursor: crosshair;
}

#canvas2{
    background: #111;
    filter: blur(0.6px);
    box-shadow: inset 0 0 88px 25px #111;
}