website/components/Title/Title.module.css
2023-08-28 09:40:38 +02:00

44 lines
465 B
CSS

.title {
font-weight: 700;
margin: 0;
color: var(--text-shade-3);
}
.center {
text-align: center;
margin: 0 auto;
}
h1.title {
font-size: 4rem;
}
h2.title {
font-size: 3rem;
}
.prefix,
.suffix {
color: var(--accent-shade-1);
}
@media screen and (max-width: 840px) {
h1.title {
font-size: 3.5rem;
}
h2.title {
font-size: 2.5rem;
}
}
@media screen and (max-width: 420px) {
h1.title {
font-size: 3rem;
}
h2.title {
font-size: 2rem;
}
}