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

.bg {
    height: 100%; 
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.main {
    border: 3px solid transparent;

    height: 75%;
    width: 75%;
    margin: auto;
}

.row1 {
    margin-top: 5%;
    position: relative;
    height: 50%;
    width: 100%;
}

.row1 img {
    position: absolute;
    width: 28%;
    margin-left: 5%;
    bottom: 0;
}

.row2 {
    height: 50%;
    width: 100%;
    display: flex;
}

.column1 {
    height: 100%;
    width: 38%;
}

.column1 img {
    width: 100%;
    margin: auto;
}

.column2 {
    height: 100%;
    width: 62%;
    position: relative;
}

.player {
    position: absolute;
    top: 50%;
    width: 100%;
}

.afm-player {
    width: 100%;
}

@media(max-width: 1350px) and (min-width:1140px){
    .player {
        top: 36%;
    }
}

@media(max-width: 1139px) and (min-width:769px){
    .player {
        top: 20%;
    }
}


@media(max-width: 768px) {
    
    .row1 img {
        width: 100%;        
    }

    .row2 {
        display: block;
    }

    .column1 {
        width: 100%;
    }

    .column2 {
        width: 100%;
        height: unset;
    }

    .column2 .player {
        top: 0;
    }

    .column1 img {
        width: 100%;
    }
}