struct ContentView: View {
   var body: some View {
      Text("Hello World")
         .font(.largeTitle)
         .background(.red)
         .foregroundStyle(.thickMaterial)
   }
}