/*
    ----------------------------------------------------------------------------------
    ----------  /udemy.antonydev.tech/  ----------------------------------------------
    ----------  /desarrollo-web-completo-con-html5-css3-js-ajax-php-mysql/  ----------
    ----------  /03-patrones-diseño-responsive-web-design/  --------------------------
    ----------  /01-dos-columnas-iguales-css-grid/  ----------------------------------
    ----------  /css/styles.css  -----------------------------------------------------
    ----------------------------------------------------------------------------------
*/


html {
    box-sizing: border-box;
    font-size: 62.5%;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    font-family: 'Raleway', sans-serif;
    font-size: 1.6rem;
}

img {
    max-width: 100%;
}

h1 {
    font-size: 4rem;
}

.contenedor {
    max-width: 1200px;
    width: 95%;
    margin: 0 auto;
}

.entrada-blog a {
    display: inline-block;
    background-color: #2196F3;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 300ms ease-in-out;
    &:hover {
        background-color: #1976D2;
    }
}

@media (min-width: 768px) {
    
    .dos-columnas {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 5rem;
    }
}