body,
html {
    height: 100%;
    margin: 0;
    font: 400 15px/1.8 "Poppins", sans-serif;
    /* font-family: 'Poppins', sans-serif; */
    color: #777;
    background-color: #030709;
    background-image: url("../img/background-desktop.png");
    position: relative;
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: contain;
}

.div-principal {
    position: absolute;
    left: 10%;
    top: 10%;
}

.div-principal h1 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 40px;
    /* font-size: 3.5em; */
    line-height: 40px;
    /* or 92% */
    letter-spacing: 0.05em;
    color: #FDC500;
    margin-bottom: 10px;
    /* border: 1px solid #000000; */
}

.div-principal h2 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    /* font-size: 1.2em; */
    line-height: 26px;
    /* or 90% */
    letter-spacing: 0.05em;
    /* text-transform: uppercase; */
    color: #FDC500;
}

.div-principal .separador {
    height: 10px;
    width: 240px;
    margin-top: 18px;
    background-color: #FDC500;
}

.div-secundario {
    position: absolute;
    left: 10%;
    top: 68%;
}

.div-secundario .dato {
    color: #FDC500;
    /* margin-bottom: 10px; */
    font-size: 12px;
    font-weight: 400;
    line-height: 40px;
}

.div-secundario .dato a,
.div-secundario .dato a:hover {
    color: #FDC500;
    text-decoration: none;
}

.div-secundario .dato i {
    font-size: 12px;
    margin-right: 10px;
}


/* For mobile tablets */

@media only screen and (max-width: 900px) {
    body,
    html {
        /* background-image: url("../img/background-mobile.png"); */
        background-position: bottom;
    }
}


/* For mobile phones */

@media only screen and (min-width: 380px) and (max-width: 800px) {
    body,
    html {
        background-image: url("../img/background-mobile.png");
        background-position: bottom;
    }
    .div-principal {
        position: absolute;
        left: 7%;
        top: 3%;
    }
    .div-principal h1 {
        font-size: 27px;
        line-height: 30px;
    }
    .div-principal h2 {
        font-size: 12px;
        line-height: 20px;
        /* width: 90%; */
    }
    .div-principal .separador {
        height: 5px;
        width: 175px;
        margin-top: 18px;
        background-color: #FDC500;
    }
    .div-secundario {
        left: 7%;
        top: 78%;
    }
    .div-secundario .dato {
        line-height: 33px;
    }
}

@media only screen and (max-width: 380px) {
    body,
    html {
        background-image: url("../img/background-mobile.jpg");
        background-position: bottom;
    }
    .div-principal {
        position: absolute;
        left: 7%;
        top: 2%;
    }
    .div-principal h1 {
        font-size: 25px;
        line-height: 30px;
    }
    .div-principal h2 {
        font-size: 11px;
        line-height: 20px;
        /* width: 90%; */
    }
    .div-principal .separador {
        height: 5px;
        width: 175px;
        margin-top: 18px;
        background-color: #FDC500;
    }
    .div-secundario {
        left: 7%;
        top: 74%;
    }
    .div-secundario .dato {
        line-height: 30px;
    }
}