body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    background-color: #f4f4f4;
}

.phone {
    width: 90%;
    max-width: 400px; /* Adjust as needed */
    height: auto;
    background-color: #000;
    border: 5px solid #333;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    margin: 20px;
}

img, video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

p {
    color: red;
    font-size: 1.2rem;
    margin: 10px 0;
    text-align: center;
}

@media (max-width: 1350px) {
    body {

        flex-direction: column; /* Display items vertically */
        height: auto;
    }

    body {
        flex-wrap: wrap;
    }

    .phone {
        width: 48%; /* Adjust as needed for spacing */
        margin: 1%; /* Adjust as needed for spacing */
    }
    
    
}