/*
Theme Name: landing motos yuhmak
Theme URI: https://example.com/
Author: ismael isa
Author URI: mailto:ismael.isa02@gmail.com
Description: Theme Diseñado para la Landing motos yuhmak
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: motos, ofertas, flexbox, css grid, mobile first
Text Domain: laindingmotosyuhmak
*/

html {
    box-sizing: border-box;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
}

.container-cards {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
    ul {
        display: grid;
        padding: 0;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.container-cards ul li {
    list-style: none;
}

@media (max-width: 576px) {
    .container-cards{
        ul {
            grid-template-columns: repeat(1, 1fr);
        }
    }
}
