Screen Shot 2022-03-22 at 9.06.14 PM.png

import SwiftUI

struct ContentView: View {
    var body: some View {
        VStack {
            Image("rainbowlake")
                .clipShape(Circle())
                .overlay{ Circle()
                        .stroke(.white, lineWidth: 10)
                }
            .shadow(radius: 4)
            Text("Ocean")
                .font(.largeTitle)
                .fontWeight(.semibold)
                .foregroundColor(Color.blue)
                .padding(.all)
                .background(Color.red).cornerRadius(40)
         
            
            HStack{
                Text("Let your joy be in your journey - not in some distant goal.")
                    .foregroundColor(Color.white)
                    .padding(.all)
                    .multilineTextAlignment(.center)
                    .background(Color.black)
                    .cornerRadius(14)
                
            
                
            }
        }
       
        
        

    }
    
}

struct ContentView_Previews: PreviewProvider {
    static var previews: some View {
        ContentView()
    }
}