html,
body {
    height: 100%;
    margin: 0;
    background-color: #272F35;
    /* background: linear-gradient(180deg, rgba(250, 250, 250, 1) 0%, rgba(241, 241, 241, 1) 100%); */
    background-image: url('../imgs/bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

body {
    display: flex;
}

.landing {
    width: 100%;
    /* height: 100%; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
}

.img-bg {
    width: 100%;
    max-width: 1600px;
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    /* background-image: url('../imgs/info.png');
    background-position: center;
    background-size: auto 100%;
    background-repeat: no-repeat; */
}

.img-bg img {
    max-width: 400px;
    height: auto;
    max-height: 100%;
    width: auto;
}

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

    /* .img-bg {
        background-position: center top;
        background-size: 260% auto;
    } */

    .img-bg img {
        max-width: 90%;
        max-height: 90%;
        width: auto;
        height: auto;
    }
}