Hello dominic
I add the next css code in style.css because I need in a article, text in 3 columns and other an text in color white. But the size font of the website now is very small. Can you help me to restore to the size correct and give me an alternative to do this?
*{
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
font-size: 62.5%;
line-height: 1;
}
p {
font-size: 15px;
font-size: 1.5rem;
line-height: 1.333333334;
margin-bottom: 20px;
margin-bottom: 2rem;
text-align: justify;
}
.three-columns {
-webkit-column-count: 3; /* Chrome, Safari, Opera */
-moz-column-count: 3; /* Firefox */
column-count: 3;
}
.color_blanco{
color: white;
}
Thank you for your help.