import pygame
# Initialize Pygame
pygame.init()
# Get the screen resolution
info = pygame.display.Info()
WIDTH, HEIGHT = info.current_w, info.current_h # Set to the current screen size
# Constants
WHITE = (255, 255, 255)
LIGHT_COLOR = (255, 255, 100)
OBJECT_COLOR = (100, 255, 100)...