html {
    background: #ffeeee;
}

body {
    background: #ffeeee;
    color: #545454;
    font-family:  'Josefin Slab', serif;
    font-size: 21px;
    line-height: 1.8;
    margin: 0;
}

p {
    margin: 0 auto;
    max-width: 600px;
    padding: 15px;
}

.caja {
    width: 80%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 0 auto;
    margin-top: 87px;
}
/* para browser */
@media (max-width: 768px) {
    .caja {
        width: 90%;
        align-items: center;
        flex-direction: column;
    }
}
/* para dispositivo */
@media only screen and (max-device-width: 768px) {
    .caja {
        width: 90%;
        align-items: center;
        flex-direction: column;
    }
}


h1, h2, h3, h4, h5, h6 {
    color: #222;
    font-weight: 600;
    line-height: 1.3;
}

h2 {
    margin-top: 1.3em;
}

a {
    color: #545454;
    text-decoration:none; 

}
}

b
{
    font-weight:700;
}

}

samp {
    display: none;
}


@keyframes colorize {
    0% {
        -webkit-filter: grayscale(100%);
        filter: grayscale(100%);
    }
    100% {
        -webkit-filter: grayscale(0%);
        filter: grayscale(0%);
    }
}

