/* ==========================================
   ROOT
========================================== */

.conideas-app {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ==========================================
   BOX SIZING
========================================== */

.conideas-app *,
.conideas-app *::before,
.conideas-app *::after {
    box-sizing: border-box;
}

/* ==========================================
   TYPOGRAPHY
========================================== */

.conideas-app {
    font-family: system-ui, sans-serif;
    line-height: 1.5;
    color: #222;
}

/* ==========================================
   LINKS
========================================== */

.conideas-app a {
    text-decoration: none;
}

/* ==========================================
   IMAGES
========================================== */

.conideas-app img {
    max-width: 100%;
    height: auto;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 768px) {

    .conideas-app {
        padding: 15px;
    }
}