ZStack(alignment: .topLeading) {
    RoundedRectangle(cornerRadius: 60, style: .circular)
        .frame(width: 200, height: 200)
        .foregroundColor(.red)
        .zIndex(1)

    Circle()
        .frame(width: 120, height: 120)
}