body {
     transition: 0.5s;
     line-height: 1.6;
     background-color: #b8b8b8;    
     
 }




.side-menu-left {
    position: fixed;
    right: -235px; /* Menü başlangıçta gizli */
    height: 70%;
    top: 160px;
    /* background: linear-gradient(to top,#6776f7,#bbc1f7,#bbc1f7,#6776f7); */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 30px;
    z-index: 1000;
    width: 250px; /* Menü genişliği */
    transition:  0.3s;
    animation:infinite 8s merhabı;
    animation-delay: 2s;
    overflow-y: scroll;
    background-color: rgb(119, 44, 39);;
    
}

@keyframes merhabı{
    15%{transform: translatex(-10px);}
    17%{transform: translatex(0);}
    100%{transform: 0;}
}

.side-menu-left:hover {
    right: 0px; /* Fare üzerine gelince menü açılsın */
    animation: none;
    background-color: #ebdcdc;
}


.side-menu-left ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-left: 10px;
}

.side-menu-left ul li {
    margin-bottom: 15px;
}

.side-menu-left ul li a {
    text-decoration: none;
    color: #000000;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.side-menu-left ul li a:hover {
    color: rgb(204, 89, 80);
}
.fmain{
    margin: 0 auto;
    height: auto;
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.fullscreen-section {
    height: auto;
    
    display: flex;
    width: 100%;
    
    justify-content: center;
    align-items: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    
}


.fullscreen-section .content {
    max-width: 1200px;
    width: 100%;
    padding: 20px;
}

.fullscreen-section img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 30px;
    width: 800px;
}

.fullscreen-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #1f1f1f;
}

.fullscreen-section p {
    font-size: 1.5rem;
    color: #252525;
    line-height: 1.8;
}

