Pretty cool CloudZimmerman! Welcome to the forum!
If you don't know already, QB64 lets you make a graphics window as large as you want. I usually use 800 x 600. To use it, use this command:
SCREEN _NEWIMAGE(800,600,32)
That makes a 32 bit screen on 800 x 600 pixels. The colors for 32 bit are enormous. For example you can do this for the LINE command:
LINE (50,50)-(200,200),_RGB32(255,0,0),BF
255 is the maximum amount of red you can use, it's RED, GREEN, BLUE. For complete white it's 255,255,255 and for complete black it's 0,0,0.
Anyway, you might know all this already so I'll end there. Happy programming!