20 lines
175 B
CSS
20 lines
175 B
CSS
h1 {
|
|
font-size: 6vw;
|
|
color: white;
|
|
}
|
|
|
|
p {
|
|
font-size: 1vw;
|
|
color: white;
|
|
}
|
|
|
|
@media (max-width: 980px) {
|
|
h1 {
|
|
font-size: 4vw;
|
|
}
|
|
|
|
p {
|
|
font-size: 2vw;
|
|
}
|
|
}
|