48 lines
412 B
CSS
48 lines
412 B
CSS
h1 {
|
|
font-size: 6vw;
|
|
color: white;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 5vw;
|
|
}
|
|
|
|
h3 {
|
|
font-size: 4vw;
|
|
}
|
|
|
|
h4 {
|
|
font-size: 3vw;
|
|
color: white;
|
|
}
|
|
|
|
h5 {
|
|
font-size: 2vw;
|
|
}
|
|
|
|
p {
|
|
font-size: 1vw;
|
|
color: white;
|
|
}
|
|
|
|
small {
|
|
color: white;
|
|
}
|
|
|
|
a.fill_div {
|
|
display: block;
|
|
height: 100%;
|
|
width: 100%;
|
|
text-decoration: none;
|
|
}
|
|
|
|
@media (max-width: 980px) {
|
|
h1 {
|
|
font-size: 4vw;
|
|
}
|
|
|
|
p {
|
|
font-size: 2vw;
|
|
}
|
|
}
|