* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-image: url("./Photo.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.phone-view {
    position: relative;
    //background-image: url("https://cdn.branch.io/assets/279541c2f9841469b47aacac451a480aa19116a6/static/images/journeys/devices/iPhone_12_Pro.svg");
    background-image: url("Iphone15proFill.png");
    background-size: contain;
    width: 280px;
    height: 613px;
    padding: 0 15px;
    /padding: 40px 21px;
    background-repeat: no-repeat;
    overflow: hidden;
    z-index: 10;
}

#vid {
    position: absolute;
    padding: inherit;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 90%;
    overflow: hidden;
}

.hand {
    position: fixed;
    pointer-events: none;
    overflow:hidden;
    bottom: -20px;
    right: 30%;
    z-index: 100000;
}

.img-hand {
    width: 73px;
    height: 86px;
}

@-webkit-keyframes scaleUpDown {
    0%, 100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
}

@keyframes scaleUpDown {
    0%, 100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
}

.image-scale-effect {
    animation: scaleUpDown 2s infinite;
    transform-origin: center center;
    transition: transform 0.2s;
}

/*@media screen and (max-width: 989px) {*/

/*    .phone-view {*/
/*        width: 900px; !* Изменяем размеры для мобильных устройств *!*/
/*        height: 1700px; !* Изменяем размеры для мобильных устройств *!*/
/*        padding: 10vw 5vw; !* Изменяем отступы для мобильных устройств *!*/
/*    }*/
/*}*/

@media only screen and (max-width: 600px) {

}