from DreamCar import TeslaCar
car_name = input("Enter the Name of your Tesla car: ")
car_color = input("Choose a color for your Tesla car: ")
car_phrase = input("Enter a custom phrase for your Tesla car: ")
car_feature = input("Enter the special feature of your Tesla car: ")
my_car = TeslaCar(car_name, car_color, car_phrase, car_feature)
print("\nHere are the details of your Tesla car:")
my_car.show_details()