/* Small and extra-small devices */

@media(max-width:767px) {
    /* Ensure correct display on mobile devices */
    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }
    .contenido {
        text-align: center;
    }
    .contenido p {
        font-size: 20px;
        font-weight: bold;
        color: dimgrey;
    }
    .contenido span {
        font-size: 24px;
        color: black;
        font-weight: bold;
    }
}


/* Medium devices */

@media(min-width:768px) {
    /* Uncomment this block when content goes inside iframe */
    .container {
        width: 460px;
    }
    .icono {
        width: 40px;
        height: 20px;
    }
    p {
        display: inline;
    }
    .contenido {
        text-align: center;
        margin-top: 50px;
    }
    .contenido p {
        font-size: 24px;
        font-weight: bold;
        color: dimgrey;
    }
    .contenido span {
        font-size: 28px;
        color: black;
        font-weight: bold;
        margin: 10px 0px;
    }
}


/* Large devices */

@media(min-width:992px) {}


/* Extra large devices */

@media(min-width:1200px) {}