

#logo {
    width: 15.5em;
    height: 4.8em;
    margin-top: 1em;
    margin-bottom: 1em; 
}

.header-bar{
    background-color: #333;
    color: #fff;
    border-bottom: 2px solid #e5d81b;
}

.h1{
	text-align: center;
	font-size: 1.5em;
	margin: 1em;
	font-family: 'open_sansregular',sans-serif;
}



.col_divider{
	border-bottom: 1px solid #f1f1f1;
    width: 100%;
    margin-bottom: 1em;
}

.text-fino{
    font-family: 'open_sanslight', sans-serif;
    color: grey;
}

.text-one{
    font-family: 'open_sanslight', sans-serif;
    color: #257FA4;
}

/*Esto lo agregué*/
.panel {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 70vh;
    width: 100%;
    flex-flow: row wrap;
}

.block {
    border-radius: 8px;
    background-color: rgb(217, 155, 10);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 40%;
    width: 26%;
    text-decoration: none;
    border: solid 1.5px rgb(45, 45, 45);
}

.block img {
    width: 150px;
    height: 150px;
    margin-bottom: 10px;
}

.block span {
    text-decoration: none;
    color: rgb(45, 45, 45);
    font-weight: bold;
    display: block;
    font-size: 1.5em;
    text-transform: uppercase;
    padding: 5px;
    border-radius: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.block:hover{
    background-color: rgb(240, 202, 95);
}

.bienvenida{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10vh;
    font-size: 2em;
}

@media only screen and (max-width: 768px){
    .block{
        width: 100%;
        height: 20%;
    }

    .block img {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }

    .block span {
        text-decoration: none;
        color: rgb(45, 45, 45);
        font-weight: bold;
        display: block;
        font-size: 1em;
        text-transform: uppercase;
        padding: 5px;
        border-radius: 8px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    }
}
