*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body{
    background: #ecfdff;
}

.contenedor{
    background: #101816;
    color: #ecfdff;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    
    
}

.titulo{
    text-align: center;
    font-size: 40px;
    margin-bottom: 40px;
    font-weight: 0;
}

.sub-titulo{
    font-size: 30px;
    font-weight: 0;
}

.contenedor img{
    width: 300px;
    height: auto;
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 5px solid #00ff55;
}

.contenedor p{
    text-align: justify;
    font-size: 20px;
    font-weight: 100;
    margin-top: 20px;
}



@media only screen and(min-width: 320px),  (max-width: 768px){
    .contenedor{
        background: #291b0a;
        width: 100%;
        padding: 20px;
    }

    .titulo{
        color: #00ff55;
        font-family: 'arial';
        font-size: 12px;
        margin-bottom: 10px;
    }

    .sub-titulo{
        color: #fbff00;
        font-size: 10px;
        letter-spacing: 1px;
    }

    .contenedor img{
        margin-right: 0px;
        width:100%;
    }

    .contenedor p{
        color: #ffffff;
        font-family: 'arial';
        font-size: 10px;
        font-style: oblique;
        letter-spacing: 1px;
    }
}