17 lines
320 B
CSS
17 lines
320 B
CSS
.title {
|
|
color: var(--some-grey-color, #000);
|
|
/* font-family: var(--ff-brandon-text); */
|
|
font-size: 1.5rem;
|
|
font-weight: 500;
|
|
letter-spacing: 0.6%;
|
|
line-height: 1.7rem;
|
|
margin: 0;
|
|
}
|
|
|
|
@media screen and (min-width: 950px) {
|
|
.title {
|
|
color: var(--some-grey-color, #4f4f4f);
|
|
font-size: 1.2rem;
|
|
}
|
|
}
|