from tkinter import Tk, Canvas, PhotoImage, NW


w = Tk()

canv = Canvas(w, height=600, width=600, bg="#9efbfe")

f = ("Arial", 32, "bold italic")
fonts = ("Arial", 25, "bold italic")


img = PhotoImage(file="funny_bird.png")

canv.create_image(240, 0, image=img, anchor = NW)

y = 150

options = ("Играть", "Загрузить", "Сохранить", "Настройки", "Выйти")

for opt in options:
    canv.create_text(300, y, text=opt, fill="black", font=f)
    y += 50





canv.create_text(300, 500, text="Разраб Охотин Роман", fill="black", font=fonts)
canv.pack()


w.mainloop()