* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Taşmayı kontrol etmek için */
}

body {
    background-color: #ffffff;
    overflow-x: hidden; /* Sayfanın sağa kaydırılmasını engeller */
}

.container {
    width: 100%;
    height: 100vh;
    background-image: url(./images/main.png);
    background-position: center;
    background-size: cover;
}

.navbar {
    height: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.corbalar {
    height: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.corba {
    height: 15%;
    margin-left: 531px;
    display: grid;
    grid-template-columns: repeat(4, 15%);
    column-gap: 1px;
    row-gap: 1em;
}

.kategorilertag {
    display: flex;
    justify-content: center;
    position: relative; /* Taşmanın etkisini kontrol etmek için relative konum */
}

.kategoriler {
    margin-left: 340px;
    display: grid;
    grid-template-columns: repeat(6, 13%);
    column-gap: 1px;
    row-gap: 1em;
}


@media screen and (max-width: 700px) {
    .container {
        width: 100%;
        background-image: url(./images/main.png);
    }

    .navbar {
        height: 25%;
        display: flex;
        justify-content: center;
        align-items: center;
        scale: 70%;
    }

    .kategorilertag {
        display: flex;
        justify-content: center;
        scale: 100%;
        margin-top: -3vh;
        overflow: hidden
    }

    .kategoriler {
        scale: 60%;
        margin-left: -22%;
        margin-top: -42%;
        display: grid;
        grid-template-columns: repeat(3, 42%);
        column-gap: 1px;
        row-gap: 1em;
        overflow: visible; /* Taşan içeriği göstermek için */
    }

    .corbalar {
        height: 10%;
        scale: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: -42%;
        overflow: hidden
    }

    .corba {
        scale: 60%;
        margin-left: -22%;
        margin-top: -5%;
        display: grid;
        grid-template-columns: repeat(3, 42%);
        column-gap: 1px;
        row-gap: 1em;
        overflow: visible; /* Taşan içeriği göstermek için */
    }
}
