@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');

.material-symbols-outlined {
    font-variation-settings:
        'FILL' 0,
        'wght' 400,
        'GRAD' 0,
        'opsz' 48
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'arial';
}

.baslikAlani {
    display: flex;
    width: 90%;
    justify-content: space-evenly;
    align-items: center;
    margin: auto auto;
    padding: 10px 10px;
}

.baslikAlani img {
    width: 100px;
}

.baslikAlani ul {
    display: flex;
    list-style-type: none;
}

.baslikAlani h2 {
    font-size: 40px;
    text-shadow: 2px 2px 16px gray;
}

.menu {
    width: 90%;
    margin: auto auto;

}

.menu ul {
    display: flex;
    list-style-type: none;
    justify-content: space-between;
    gap: 10px;
}

.menu ul li {
    flex-grow: 1;
}

.menu ul li a {
    display: block;
    text-align: center;
    text-decoration: none;
    color: #000;
    padding: 10px 10px;
    border-top: 2px solid brown;
    text-shadow: 2px 2px 16px gray;
    background-color: #f8ddc7;
    border-radius: 8px;
    transition: 0.5s;
}

.menu ul li a:hover {
    box-shadow: 2px 2px 12px brown;
}

.bannerAlani {
    width: 90%;
    margin: auto auto;
    margin-top: 10px;
    background-color: #f8ddc7;
    background-image: url(img2/banner.jpg);
    padding: 150px 150px;
    opacity: 0.8;
    border-bottom: 2px solid brown;
}

.metin {
    padding: 10px;
    background-color: rgba(236, 134, 94, 0.411);
    width: 200px;
    text-align: center;
    color: aliceblue;
    letter-spacing: 8px;
    line-height: 25px;
}

.kartAlani {
    width: 90%;
    margin: auto auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 20px 20px;
    background-color: #f8ddc7;
}

.b {
    text-align: center;
    letter-spacing: 15px;
    font-size: 35px;
}

.kartAlani ul {
    display: flex;
    list-style-type: none;
    gap: 8px;
}

.kartAlani ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.kartAlani ul li img {
    width: 100%;
}

.cizgi {
    width: 40px;
    padding: 3px 3px;
    border-bottom: 4px solid brown;
}

.footer {
    width: 90%;
    margin: auto auto;
    margin-top: 20px;
    background-color: brown;
    padding: 15px 15px;
    text-align: center;
    font-size: 15px;
    color: beige;
}

.urunler-icerik {
    width: 90%;
    margin: auto auto;
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    gap: 5px;
}

.urunler-resim {
    width: 30%;
    background-image: url(img2/pexels-konstantin-mishchenko-1926769.jpg);
    background-position: center top;
    opacity: 0.8;
    background-repeat: no-repeat;
}

.urunler-kart {
    width: 70%;
}
.urunler-kart h4 {
    text-align: center;
}
.urunler-kart h3 {
    text-align: center;
}

.urunler-kart ul {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
}

.urunler-kart ul li {
    width: 33.3%;
    border: #f8ddc7 1px solid;
}

.r {
    border-bottom: #f8ddc7 1px solid;
    overflow: hidden;
}

.r img {
    width: 100%;
}

.r img:hover {
    scale: 1.2;
    rotate: 360deg;
    transition: all 0.5s;
}

.sepete-ekle {
    text-decoration: none;
    display: block;
    text-align: center;
    background-color: #f8ddc7;
    color: #000;
    font-size: 15px;
    width: 100%;
    padding: 15px 15px;
}