error CS1513: } expected but there is already unity

Code Example - error CS1513: } expected but there is already unity

                
                        using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class NewBehaviourScript : MonoBehaviour
public static float beklemeSuresi;
public GameObject resimObjesi;
    void Start()
    {
        if (beklemeSuresi < 60)
        {
            beklemeSuresi += 2;
        }

        StartCoroutine(ResimGoster(beklemeSuresi));
    }

    IEnumerator bekle(float saniye)
    {
        resimObjesi.SetActive(true);
        yield return new WaitForSeconds(saniye);
        resimObjesi.SetActive(false);
    }