diff --git a/DIY.py b/DIY.py
index b822590..7e7f4ab 100644
--- a/DIY.py
+++ b/DIY.py
@@ -1,5 +1,7 @@
 import turtle
 pen=turtle.Pen()
+pen.penup()
+pen.goto(100,-100)
 pen.write("helo",font=("times",30,"normal"))
 pen.hideturtle()
 pen1=turtle.Pen()
@@ -11,4 +13,7 @@ pen1.circle(50,180)
 pen1.right(90)
 pen1.circle(50,180)
 pen1.forward(100)
+screen=turtle.Screen()
+screen.bgcolor("light blue")
 turtle.done()
+