* {
margin:0;
padding: 0;
box-sizing: border-box;
}
body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(to right, #43c6ac,#120d75);
}
@media (min-width:360px) {
    .logo{
        position: absolute;
        top: 10px;
        width: 200px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px;
    }
    .player{
        position: absolute;
        width: 300px;
        background: #f1f3f4;
        border-radius:20px;
        box-shadow: 0 50px 80px rgba(0, 0, 0, 0.5);
    }
    .player .imgbox{
        position: relative;
        width: 100%;
        height: 380px;
    }
    
    .player .imgbox video{
        position: absolute;
        top:0;
        left:0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
    }
    .player audio{
        width: 100%;
        outline: none;
    }
    
    .social{
        position: fixed;
        width: 300px;
       text-align: center;
        bottom: 30px;
        display: inline-block;
    }
    }

    @media (min-width:768px) {
        .logo{
            position: absolute;
            top: 10px;
            width: 200px;
            margin-left: auto;
            margin-right: auto;
        }
        .player{
            position: absolute;
            width: 300px;
            background: #f1f3f4;
            border-radius:20px;
            box-shadow: 0 50px 80px rgba(0, 0, 0, 0.5);
        }
        .player .imgbox{
            position: relative;
            width: 100%;
            height: 400px;
        }
        
        .player .imgbox video{
            position: absolute;
            top:0;
            left:0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-top-left-radius: 20px;
            border-top-right-radius: 20px;
        }
        .player audio{
            width: 100%;
            outline: none;
        }
        
        .social{
            position: fixed;
            width: 300px;
           text-align: center;
            bottom: 30px;
            display: inline-block;
        }
        }

        @media (min-width:992px) {
            .logo{
                position: absolute;
                top: 30px;
                width: 200px;
                margin-left: auto;
                margin-right: auto;
            }
            .player{
                position: absolute;
                width: 300px;
                background: #f1f3f4;
                border-radius:20px;
                box-shadow: 0 50px 80px rgba(0, 0, 0, 0.5);
            }
            .player .imgbox{
                position: relative;
                width: 100%;
                height: 380px;
            }
            
            .player .imgbox video{
                position: absolute;
                top:0;
                left:0;
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-top-left-radius: 20px;
                border-top-right-radius: 20px;
            }
            .player audio{
                width: 100%;
                outline: none;
            }
            
            .social{
                position: fixed;
                width: 300px;
               text-align: center;
                bottom: 20px;
                display: inline-block;
            }
            }
@media (min-width:1400px) {
.logo{
    position: absolute;
    top: 50px;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
}
.player{
    position: absolute;
    width: 350px;
    background: #f1f3f4;
    border-radius:20px;
    box-shadow: 0 50px 80px rgba(0, 0, 0, 0.5);
}
.player .imgbox{
    position: relative;
    width: 100%;
    height: 450px;
}

.player .imgbox video{
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.player audio{
    width: 100%;
    outline: none;
}

.social{
    position: fixed;
    width: 350px;
   text-align: center;
    bottom: 80px;
    display: inline-block;
}
}