Mundo em Python

ASSUNÇÃO DE NOSSA SENHORA

from tkinter import *
root = Tk()
root.geometry("700x300")
root.resizable(0, 0)
root.config(bg="#103030")
root.title("ASSUNÇÃO DE NOSSA SENHORA")
titulo = Label(text="ASSUNÇÃO DE NOSSA SENHORA",
font=("Arial", "28", "bold"), bg="#103030", fg="#49e3e3")
titulo.place(relx=0.08, rely=0.05) texto_sub1 = Label(text="Celebra Assunção de Nossa Senhora\n "
"Maria foi levada ao Céu em corpo e alma.",
font=("Arial", "18", "bold"), bg="#103030", fg="#49e3e3")
texto_sub1.place(relx=0.2, rely=0.32)
root.mainloop()
0