
/* ------------------
    General setting
-------------------- */
*{
    font-family: 'Myriad Pro', Helvetica, Arial, sans-serif;
}

html{
    height: 100%;
}

body{
    position: relative;
    height: 100%;
    background: url(../img/flag-ceiba.jpg) 100% 100% no-repeat;
}

img{
    background-size: auto;
    margin: auto;
    margin-top: 100px;
}

.container{
    position: relative;
}

/* ------------------
    Wrapper
-------------------- */
#wrapper{
    min-height: 100%;
    height: 100%;
    width: 100%;
}

/* ------------------
    Info
--------------------*/
.info{
    position: relative;
    z-index: 999;
}

.info h1{
    font-size: 70px;
    margin-top: 120px;
    color: #264636;
}

.info h2{
    font-size: 26px;
    color: #77b4af;
}

.info h2 span{
    font-weight: bold;
}

.info p{
    font-size: 16px;
    color: #4e4e4e;
    margin: 15px 0;
    text-align: justify;
}

/* ------------------
    image
--------------------*/
.illustation{
    margin-top: 50px;
}

/* ------------------
    Media queries
--------------------*/

@media (max-width: 1024px) {

    .info h1 {
        font-size: 110px;
    }
    .info h2 {
        font-size: 30px;
    }

    body{
        background: white;
    }

}

@media (max-width: 768px) {

    #wrapper{
        background: white;
    }
    .info{
        padding: 10px 40px;
    }
    .info h1 {
        font-size: 60px;
        margin-top: 70px;
    }
    .info h2 {
        font-size: 27px;
    }
    .info p {
        font-size: 18px;
    }
  
    img {
    margin: -40px auto;
}


}

@media (max-width: 430px) {

    .info{
        padding: 10px;
    }

    .info h2{
    font-size: 24px;
    }

    .info p{
        font-size: 16px;
        text-align: left;
    }

    .illustration{
        margin-top: -30px;
    }

}