added mediaquery for content in h1 css

This commit is contained in:
Esteban 2026-04-15 09:49:48 -05:00
parent 2f126b9db8
commit f14f94f069
1 changed files with 17 additions and 0 deletions

View File

@ -45,4 +45,21 @@ body {
font-weight: 700; font-weight: 700;
text-align: left; text-align: left;
font-family: var(--font-secondary); font-family: var(--font-secondary);
}
/* Tablet */
@media (max-width: 1024px) {
.content h1 {
display: none;
}
}
/* Celular */
@media (max-width: 767px) {
.content h1 {
font-size: 22px;
margin-bottom: 20px;
line-height: 120%;
text-align: left; /* puedes cambiar a center si quieres */
}
} }