17 lines
278 B
CSS
17 lines
278 B
CSS
main {
|
|
font-family: Candara;
|
|
background-image: linear-gradient(to bottom, #806f9f, rgb(21, 16, 54));
|
|
color: white;
|
|
background-size: cover;
|
|
}
|
|
|
|
.title-category {
|
|
font-size: 30px;
|
|
}
|
|
|
|
@media screen and (max-width: 576px) {
|
|
|
|
.title-category {
|
|
font-size: min(10vw, 30px);
|
|
}
|
|
} |