* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    background-color: bisque;
}

nav {
    width: 100%;
    height: 60px;
    background-color: burlywood;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 30px;
    position: fixed;
    z-index: 999;
}

.kategoriler {
    display: flex;
    gap: 50px;

}

.kategoriler li {
    list-style: none;
}

.kategoriler li a {
    text-decoration: none;
    color: rgb(118, 56, 2);
    display: inline-block;
    /* Transform çalışması için */
    transition: transform 0.3s ease;
    /* Yumuşak geçiş efekti */
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: large;

}

.kategoriler li a:hover {
    transform: scale(1.10);
}

.anasayfa a {
    text-decoration: none;
}

.anasayfa a h2 {
    color: rgb(118, 56, 2);
    display: inline-block;
    /* Transform çalışması için */
    transition: transform 0.3s ease;
    /* Yumuşak geçiş efekti */
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 25px;
}

.anasayfa a h2:hover {
    transform: scale(1.05);
}

.banner {
    width: 100%;
    height: 350px;

}

.banner img {
    width: 100%;
    height: 100%;
    border-radius: 0px 0px 40px 40px;
}
.baslik {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    transition:transform 0.4s ease; 
    
}
.baslik a{
    text-decoration: none;
    color: rgb(118, 56, 2);
}
.baslik a h2{
    font-size: 25;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
.kutu{
    
    cursor: pointer;
    align-items: center;
}
.main {
    display: flex;

}

.text {
    width: 70%;
    display: flex;
    justify-content: center;
    flex-direction: column;

}

.text h1 {
    text-align: left;
    margin-left: 100px;
    color: rgb(118, 56, 2);
    font-family: ui-monospace;
}

.text p {
    margin-left: 100px;
    margin-right: 100px;
    margin-top: 50px;
    color: rgb(118, 56, 2);
    font-family: ui-monospace;
    font-size: large;
}

.foto {
    width: 30%;
    height: auto;
}

.foto img {
    width: 370px;
}

.main-2 {
    width: 100%;
}
.bolumler :hover{
  transform: scale(1);
  border-radius: 10px;
  background-color: rgb(99, 62, 29);
}

.baslik {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}
.baslik :hover{
    
    transform: scale(1.02);
}

.baslik h2 {
    font-family: Arial, Helvetica, sans-serif;
}

.bolumler {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-top: 20px;
    transition:transform 0.4s ease,background-color 3s;
}

.bolum {
    width: 200px;
    height: 300px;
    background-color: rgb(138, 98, 62);
    border-radius: 10px;
    cursor: pointer;
}

.kitap-foto {
    width: 200px;
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kitap-adi {
     padding-left: 20px;
    margin-top: 40px;
    width: 200px;
    display: flex;
    justify-content: center;
}

.kitap-foto img {
    width: 110px;
    margin-top: 20px;
}
.kitap-foto :hover{
    transition: all 150ms ease-in;
    transform: scale(1.1);
}
footer {
    margin-top: 30px;
    width: 100%;
    height: 60px;

    background-color: burlywood;
    display: flex;
    align-items: center;
    justify-content: space-around;

}

footer p {
    color: rgb(118, 56, 2);
    margin-left: 100px;
}

.iletisim {
    display: flex;
    gap: 10px;
}