.content{
    width: 85%;
    min-height: 75vh;
    /*height: auto;*/

    background-image: url('../img/bg-container.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    box-sizing: border-box;
    padding: 5%;
}
@media only screen and (orientation: landscape) {
    .content{
        width: 74.15%;
        min-height: 81.5%;

        background-image: url('../img/bg-container-desktop.png');

        padding: 5%;
    }
}