@font-face {
    font-family: "RobReg";
    src: url("../fonts/Roboto-Regular.ttf") format("truetype");
}
@font-face {
    font-family: "RobLgIt";
    src: url("../fonts/Roboto-LightItalic.ttf") format("truetype");
}
@font-face {
    font-family: "RobBd";
    src: url("../fonts/Roboto-Bold.ttf") format("truetype");
}

html, body {
    max-height: 100vh;
    max-width: 100vw;
    width: 100vw;
    height: 100vh;
}

body {
    width: 100%;
    margin:auto;
    max-width: 800px;
    background-color: #fff;
    color: #333;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.42857143;
    text-align: center;
    border: none;
}

li {
    margin: .5em 0;
}

.container{
    width: 100vw;
    max-width: 768px;
    margin: 0 auto;
}

.img-top{
    height: 100vh;
    width: 100vw;
}

.text-footer{
    position: fixed;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
}

.text-footer p{
    color: white;
    line-height: 1;
    font-size: 11px;
    margin: 4px;
}

#landing-title{
    position: absolute;
    top: 50vh;
    transform: translateX(15%);
    background-color: rgba(0,0,0,0.5);
    color: white;
    padding: 4px 10px;
    font-size: 19px;
    font-weight: bold;
    font-family: RobBd;
}

.btn-subscribe{
    position: absolute;
    top: 65vh;
    left: 0;
    transform: translatex(57%);
    background-color: #5bc200;
    padding: 7px 35px;
    color: white;
    border-radius: 5px;
    border: 1px solid black;
    font-size: 16px;
    font-weight: bold;
    font-family: RobBd;
    cursor: pointer;
}

.headerMain{
    background-color: #212121;
    text-align: left;
    padding: 7px 12px;
}

@media(orientation: portrait) and (min-width: 360px){

    .btn-subscribe{
        transform: translatex(44%);
        padding: 10px 50px;
        font-size: 20px;
    }

    #landing-title{
        font-size: 23px;
        transform: translateX(12%);
    }

}


@media(orientation: portrait) and (min-width: 375px){

    .btn-subscribe{
        transform: translatex(44%);
        padding: 10px 50px;
        font-size: 20px;
    }

    #landing-title{
        font-size: 24px;
    }

}



@media(orientation: portrait) and (min-width: 384px){

    .btn-subscribe{
        transform: translatex(50%);
        padding: 10px 50px;
        font-size: 20px;
    }

    #landing-title{
        transform: translateX(12%);
        font-size: 25px;
    }

}

@media(orientation: portrait) and (min-width: 412px){

    .btn-subscribe{
        transform: translatex(48%);
        padding: 12px 52px;
        font-size: 22px;
    }

    #landing-title{
        transform: translateX(14%);
        font-size: 25px;
        padding: 7px 15px;
    }

}


@media(orientation: portrait) and (min-width: 454px){

    .btn-subscribe{
        transform: translatex(52%);
        font-size: 24px;
    }

    #landing-title {
        transform: translateX(15%);
        font-size: 27px;
    }

}

@media(orientation: portrait) and (min-width: 480px){

    .btn-subscribe {
        transform: translatex(58%);
        font-size: 24px;
    }

    #landing-title {
        transform: translateX(20%);
        font-size: 27px;
    }

    .text-footer p{
        font-size: 12px;
        margin: 7px;
    }

}


@media(orientation: portrait) and (min-width: 512px){

    .btn-subscribe {
        transform: translatex(65%);
    }

    #landing-title {
        transform: translateX(20%);
        font-size: 27px;
        padding: 10px 25px;
    }


}


@media(orientation: portrait) and (min-width: 560px){

    .btn-subscribe {
        transform: translatex(75%);
    }

    #landing-title {
        font-size: 30px;
    }


}


@media(orientation: portrait) and (min-width: 620px){

    .btn-subscribe {
        font-size: 30px;
    }

    #landing-title {
        font-size: 34px;
    }


}

@media(orientation: portrait) and (min-width: 680px){

    .btn-subscribe {
        transform: translatex(84%);
    }

    #landing-title {
        transform: translateX(27%);
    }


}

@media(orientation: portrait) and (min-width: 720px){

    .btn-subscribe {
        transform: translatex(91%);
    }

    #landing-title {
        transform: translateX(32%);
    }


}


@media(orientation: portrait) and (min-width: 768px){

    .btn-subscribe {
        transform: none;
        left: 34%;
    }

    #landing-title {
        transform: none;
        left: 22%;
    }

    .text-footer p {
        font-size: 13px;
        margin: 10px;
    }

}


@media(orientation: landscape) and (min-height: 720px){

    body, html{
        width: 99vw;
        height: 99vh;
    }

    .container {
        max-width: 540px;
        margin: 0 auto;
        overflow-y: hidden;
        position: relative;
    }

    .img-top {
        height: 99vh;
        width: 100%;
    }

    .text-footer{
        max-width: 540px;
        padding-top: 5px;
    }

    .text-footer p{
        font-size: 12px;
    }

    #landing-title{
        transform: none;
        top: 55vh;
        font-size: 30px;
        left: 16%;
    }

    .btn-subscribe{
        transform: none;
        top: 72vh;
        font-size: 25px;
        padding: 10px 50px;
        left: 29%;
    }
}

@media(orientation: landscape) and (min-height: 800px){

    .container {
        max-width: 600px;
    }

    .text-footer{
        max-width: 600px;
    }

    .img-top {
        height: 100vh;
    }

    #landing-title{
        left: 19%;
    }
    
    .btn-subscribe{
        left: 31%;
    }

}