body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative; 
    width: 100vw;
    height: 100vh;
}

.video-arka-plan-kapsayici {
    position: relative; 
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

#arka-plan-video {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -1;
    -webkit-appearance: none; 
    appearance: none;
    pointer-events: none;
    filter: blur(3px);
}

.icerik {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    padding-top: 1%;
}

#logo{
    width: 30%;
    height: auto;
}

.btn-menu {
    transition: transform 0.3s ease-in-out; 
    display: inline-block; 
}

.btn-menu:hover {
    transform: scale(1.1); 
    cursor: pointer;
}

.footer{
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: 100%;
    color: white;
    font-size: 22px;
    z-index: 2;
}

.films{
    transition: transform 0.3s ease-in-out;
    width: 230px;
    margin: 10px;
}

.films:hover {
    transform: scale(1.1); 
    cursor: pointer;
}

.films img{
    width: 230px;
    border-radius: 20px;
    margin: 20px;
    border: white 5px solid;
}
.list{
    width: 100%;
    position: absolute;
    padding: 20px 50px 0px 50px;
    display: flex;
}

@media only screen and (min-width: 320px) and (max-width: 480px) { 
.video-arka-plan-kapsayici {
    position: relative; 
    width: 100%;
    height: 87vh;
    overflow: hidden;
}

#arka-plan-video {
    position: fixed;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -1;
    appearance: none;
    pointer-events: none;
    filter: blur(3px);
    object-position: left;
}
#logo{
    width: 70%;
    height: auto;
}

.menu{
    padding-top: 20px;
}

}