def draw():
    screen.fill((0, 0, 0))

    screen.draw.filled_rect(
        Rect(
            (0, 0),
            (300, 388)
        ),
        color=(35, 92, 118)
    )

    screen.draw.filled_rect(
        Rect(
            (62, 200),
            (30, 25)
        ),
        color=(224, 214, 68)
    )