* {
    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;
}

.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;
}
.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;
}
.bolumler :hover{
  transform: scale(1);
  border-radius: 10px;
  background-color: rgb(99, 62, 29); 
}

.kitap-foto {
    width: 200px;
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.kitap-adi {
    margin-top: 40px;
    width: 200px;
    display: flex;
    justify-content: center;
}

.kitap-foto img {
    width: 120px;
    margin-top: 20px;
}
.kitap-foto :hover{
    transition: 0.6s;
}



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;
}