.centrado{
    display: flex;
    align-items: center;
    justify-content: center;
}

.izq{
    display: flex;
    align-items: center;
    justify-content: left;
}

.der{
    display: flex;
    align-items: center;
    justify-content: right;
}

.centrado_column{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.centrado_row{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.centrado2_column{
    display: flex;
    align-items: left;
    justify-content: left;
    flex-direction: column;
}

.centrado2_row{
    display: flex;
    align-items: left;
    justify-content: left;
    flex-direction: row;
}

p{
    margin-top: 5px;
    margin-bottom: 10px;
}

.anch_100{
    width: 100%;
}

.anch_90{
    width: 90%;
}

.anch_60{
    width: 60%;
}

.anch_50{
    width: 50%;
}

.anch_30{
    width: 30%;
}