update design

This commit is contained in:
Chneemann 2024-08-21 20:24:08 +02:00
parent 55b63966cf
commit a3d7652ea2
2 changed files with 23 additions and 2 deletions

View file

@ -72,3 +72,17 @@ form {
margin-bottom: 8px; margin-bottom: 8px;
} }
} }
@media screen and (max-width: 500px) {
.headline {
p:nth-child(1) {
font-size: 36px;
}
p:nth-child(2) {
font-size: 20px;
}
p:nth-child(3) {
font-size: 16px;
}
}
}

View file

@ -25,10 +25,17 @@ footer {
/*------------- RESPONSIVE -------------*/ /*------------- RESPONSIVE -------------*/
@media screen and (max-width: 350px) { @media screen and (max-width: 550px) {
footer {
height: fit-content;
padding: 24px;
}
}
@media screen and (max-width: 400px) {
footer { footer {
a { a {
padding: 0 24px; padding: 0 18px;
} }
} }
} }