@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;700&family=Roboto+Condensed:wght@300;400;700&family=Roboto:wght@100;300;400;700&display=swap');

:root{
    --color-borde: #e0dede;
    --color-texto: #5d5c5c;
    --color-azul: #3162ae;
    --font-roboto: 'Roboto', sans-serif;
    --font-roboto-condensed: 'Roboto Condensed', sans-serif;;
    --font-open-sans: 'Open Sans', sans-serif;
}

/*** INICIO RESET CSS ***/
html {
    box-sizing: border-box;
    font-family: var(--font-roboto);
    font-size: 13px;
    overflow-x: hidden;
}

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

body, html {
    color: var(--color-texto);
    height: 100%;
    width: 100%;
}

#contenedor_main{
    align-items: center;
    /*background-color: #f0f;*/
    display: flex;
    height: 100%;
    justify-content: center;
    padding: 20px;
    width: 100%;
}
    #contenedor_sub_main{
        /*background-color: #ff0;*/
        width: 320px;
        height: 100%;
    }
        #contenedor_sub_main img{
            max-width: 320px;
        }
        #contenedor_sub_main h1{
            font-family: var(--font-open-sans);
            font-weight: 400;
            padding: 10px 0;
            text-align: center;
        }
        .contendedor_item{
            /*background-color: #00ff00;*/
            width: 100%;
        }
            .item_elemento{
                border: thin solid #bebebe;
                border-radius: 5px;
                height: 150px;
                margin: 10px auto;
                padding-top: 10px;
                text-align: center;
                width: 130px;
                transition: all 0.7s ease;
            }
                .item_elemento a{
                    display: block;
                    width: 100%;
                    height: 100%;
                    color: var(--color-azul);
                    text-decoration: none;
                }
                .item_elemento a span{

                    font-size: 90px;
                }
                .item_elemento a p{
                    color: var(--color-azul);
                    font-size: 16px;
                }
                .item_elemento:hover{
                    background-color: rgba(0, 0, 0, 0.2);
                }
@media(min-width: 800px){
    #contenedor_sub_main{
        width: 100%;
    }
    #contenedor_sub_main h1{
        font-size: 30px;
        font-weight: 700;
        padding: 20px 0;
    }
    .contendedor_item{
        /*background-color: #f0f;*/
        display: flex;
    }
}
@media(min-width: 1200px){
    #contenedor_sub_main{
        width: 80%;
        text-align: center;
    }
    #contenedor_sub_main h1{
        font-size: 40px;
        padding: 30px 0;
    }
    #contenedor_sub_main img{
        max-width: 500px;
    }
}
@media(min-width: 1400px){
    #contenedor_sub_main{
        width: 60%;
    }
    #contenedor_sub_main h1{
        font-size: 60px;
        padding: 40px 0;
    }
    #contenedor_sub_main img{
        max-width: 600px;
    }
}