body {
    margin: 0;
    background-color: black;
    overflow-x: hidden;
    overflow-y: scroll;
    height: auto;
}

.mobil{
    display: flex;
}

.mobil2{
    display: flex;
}

.mobil3{
    display: flex;
}

.mobil4{
    display: flex;
}

.videog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.videog video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

img {
    position: absolute;
    top: 2%;
    left: 1%;
}

h1 {
    margin: 20px;
    text-align: center;
    color: aliceblue;
    font-family: 'nfs';
}

@font-face {
    font-family: nfs;
    src: url(font/MostWazted.woff);
}

@font-face {
    font-family: nfs2;
    src: url(font/NFSfont.woff);
}
.box {
    position: relative;
    background-size: cover;
    background-position: center;
    width: 700px;
    height: 500px;
    margin: 30px;
    backdrop-filter: blur(30px);
    border-radius: 30px;
    display: flex;
    justify-content: flex-start; 
    align-items: center;
    color: white;
    box-shadow: 2px 4px 5px rgba(0, 0, 0, 0.3);
    transform: translateX(400%);
    transition: transform 0.4s ease;
}

.box:nth-of-type(even) {
    transform: translateX(-400%);
}

.box.show {
    transform: translateX(0);
}

.box h2 {
    font-family: 'nfs2';
    font-size: 30px;
    position: absolute;
    bottom: 10px;
    right: 15px;
    margin: 0;
}

.box img {
    margin-top: 12rem;
    width: 200px;
    height: 250px;
    object-fit: cover;
    border-radius: 30px;
    margin-left: 6px;
}

.box p {
    margin-top: 20rem;
    color: white;
    font-size: 14px;
    line-height: 1.5;
    margin-left: 220px;
    background-image: linear-gradient(to right, black, transparent);
}

.play-btn {
    background-image: url('play.png');
    background-repeat: no-repeat;
    background-size: cover;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 40px;
}